E-COM-NET
首页
在线工具
Layui镜像站
SUI文档
联系我们
推荐频道
Java
PHP
C++
C
C#
Python
Ruby
go语言
Scala
Servlet
Vue
MySQL
NoSQL
Redis
CSS
Oracle
SQL Server
DB2
HBase
Http
HTML5
Spring
Ajax
Jquery
JavaScript
Json
XML
NodeJs
mybatis
Hibernate
算法
设计模式
shell
数据结构
大数据
JS
消息中间件
正则表达式
Tomcat
SQL
Nginx
Shiro
Maven
Linux
stdafx.h
MFC多网卡获取IP
//头文件包含#include"
stdafx.h
"#include#include#includeusingnamespacestd;#pragmacomment(lib,"iphlpapi.lib")
szby1314
·
2014-09-02 10:18
程序
include
网卡
结构体
comment
ACE Proactor 异步操作
//proactor_tcp_server.cpp:// #include"
stdafx.h
" #include"ace/Message_Queue.h" #include"ace/Asynch_IO.h
xuminglong
·
2014-09-02 01:00
ACE
Proactor
异步网络
单例模式实例
#include"
stdafx.h
" #include #include #include usingnamespacestd; classCSingleton { private: CSingleton
cjc211322
·
2014-09-01 16:00
单例模式实例
查找最大的数字子串
. // #include"
stdafx.h
" intmaxSubStr(char*str){ intlen=0; char*pstart=NULL; intmax=0; while(1){ if
pczhangtl
·
2014-09-01 10:00
进程权限提升
// #include"
stdafx.h
" #include #include usingnamespacestd; intEnableDebugPri(constchar*name){ HANDLEhToken
haifengzhilian
·
2014-08-31 20:00
关于++n和n++的打印输出问题
1、问题的引出#include"
stdafx.h
" #include usingnamespacestd; intmain() { intn=10; //printf("%d%d%d%d%d",n,
cjc211322
·
2014-08-31 10:00
n++和++n的打印输出问题
关于c++实现位图转换png
#include"
stdafx.h
"#include"WindowsCommand.h"#include#include"atlimage.h"/**Class:org_shine_network_windows_command_WindowsCommand
androidyangguang
·
2014-08-30 14:18
JAVA
C++
JNI
回调函数的用法(类之间的通信)
// #include"
stdafx.h
" #include #include usingnamespacestd; //1"方向盘"类接收外部的操作,把消息传到"车"类中,车类把消息传入到"轮子"
w18767104183
·
2014-08-30 13:00
总结GDI+使用方法
一、GDI+在程序中的引用1、
stdafx.h
//引用GDI+#includeusingnamespaceGdiplus;//该函数用来加载资源中的各种格式的图片(我写到这里也可以放到自己的类中)BOOLImageFromIDResource
xuqiang918
·
2014-08-29 16:00
图片
GDI+
gdi
二分查找中求中值时要注意溢出
//#include"
stdafx.h
"inta[100]={0};intBinarySearch(intleft,intright,intnum){if(lefta[mid])left=mid+1;elseright
imWhiteee
·
2014-08-29 11:07
windows之socket编程示例
1.tcp服务器端#include"
stdafx.h
" #include #include #include #include #pragmacomment(lib,"ws2_32.lib") usingnamespacestd
finewind
·
2014-08-28 13:00
STL算法---查找算法(二)
size_tcount(_InIt_First,_InIt_Last,const_Ty&_Val);////////////////////////////////////////// #include"
stdafx.h
cay22
·
2014-08-27 08:00
C++
STL
查找算法
COM线程模型 - STA接口 (MTA客户,跨线程传递COM对象)
. // #include"
stdafx.h
" #include #include
zj510
·
2014-08-26 20:00
枚举进程,得到所有进程全路径文件名
#include"
stdafx.h
"#include #include//声明快照函数的头文件 #include #include"CpuUsage.h"#include"GetProcInfo.h"#
jiangqin115
·
2014-08-26 09:00
huffuman编码
#include"
stdafx.h
" #include usingnamespacestd; typedefstruct { intw; intp,l,r; }HNode,*HTree; typedefchar
cjc211322
·
2014-08-25 08:00
huffuman编码
C语言的函数中,如何使用指针交换两个数的值,深入理解指针
请看下面三个swap函数#include"
stdafx.h
" voidswap1(inta,intb) { intt; t=a;a=b;b=t;printf("a:%d,b:%d\n",a,b); }
xueyushenzhou
·
2014-08-22 14:00
C语言
指针
函数调用
在main函数之外执行函数的情
1、onexit函数#include"
stdafx.h
"#include"iostream"#includeusingnamespacestd;intfunc()//必须为int返回值{coutusingnamespacestd
cjc雪狼
·
2014-08-20 10:03
C/C++
在main函数之外执行函数的情
1、onexit函数#include"
stdafx.h
" #include"iostream" #include usingnamespacestd; intfunc()//必须为int返回值 { cout
cjc211322
·
2014-08-20 10:00
main函数外调用函数的情况
【C++】链表学习
#include"
stdafx.h
" #include usingnamespacestd; typedefstructNode { intnVal; Node*pNext; }Link,*pLink
timothy721
·
2014-08-19 10:00
VC操作注册表
#include"
stdafx.h
" #include"windows.h" #include"string.h" int_tmain(intargc,_TCHAR*argv[]) { HKEYhKey
wzm10455
·
2014-08-18 17:00
线程创建时内存注意释放
#include"
stdafx.h
"#include#include#includeusingnamespacestd;DWORDWINAPItestThreadProc(LPVOIDlpParameter
w_sx12553
·
2014-08-18 11:25
打印机相关学习
C:二维数组常用操作
/* 说明:程序实现二维数组中插入列、插入行、交换两个指定位置的元素,并输出指定 位置元素的变化轨迹 作者:socrates 日期:2014-08-17 */ #include"
stdafx.h
dyx1024
·
2014-08-17 17:00
OpenCV 使用光流法检测物体运动
// #include "
stdafx.h
" // Example 10-1.
雷霄骅
·
2014-08-16 13:00
源代码
opencv
光流法
运动检测
C++ int与string或者char*之间的转换总结
#include"
stdafx.h
" #include #include #include usingnamespacestd; intmain(void) { //method1 charbuf[4
cjc211322
·
2014-08-15 14:00
C++
apr-pool 内存池测试用例
#include"
stdafx.h
" #include #include"apr_pools.h" #pragmacomment(lib,"libapr.lib") int_tmain(intargc
sniper_bing
·
2014-08-15 14:00
内存池
apr-pool
多字节 unicode和utf-8的转换
下面是我写的测试程序:[cpp] viewplaincopy#include "
stdafx.h
" #include #include /* MultiByte
whatday
·
2014-08-15 13:00
Effective STL 为包含指针的关联容器指定比较类型
// #include"
stdafx.h
" #include #include #include usingnamespacestd; structStringPtrLess: publicbinary_function
wangyaninglm
·
2014-08-14 23:00
C++赋值函数与拷贝构造函数应注意的问题
#include"
stdafx.h
" #include usingnamespacestd; classBase { public: Base(inti):num(i) {} Base(constBase
cjc211322
·
2014-08-14 10:00
谈谈C++继承中的重载,覆盖和隐藏
实例一:#include"
stdafx.h
"#includeclassCB{publi
moki_oschina
·
2014-08-13 22:00
C++的继承操作---基类指针访问派生类问题---基类成员恢复访问属性问题
#include"
stdafx.h
" #include #include usingnamespacestd; classBase { public: intnum; virtualvoidfunc(
cjc211322
·
2014-08-13 21:00
C++的继承操作
基类指针访问派生类问题
基类成员恢复访问属性问题
C++虚函数的默认参数问题
#include"
stdafx.h
" #include #include usingnamespacestd; classBase { public: Base(inti):m_num(i) { coutfunc
cjc211322
·
2014-08-13 20:00
虚函数的默认参数
预编译头文件问题
今天编译一个项目遇到以下这个问题:无法打开包括文件:“
stdafx.h
”:Nosuchfileordirectory 找不到预编译头文件
stdafx.h
,而实际上工程中是有这个文件的,#include
skylin19840101
·
2014-08-13 17:00
预编译
stdafx.h
pch
测试
这是利用sublimetext3的hightlight插件的copytoclipboardasHTML来实现的代码高亮#include"
stdafx.h
" #include usingnamespacestd
u013453604
·
2014-08-12 22:00
整型变量(int)与字节数组(byte[])的相互转换
// #include "
stdafx.h
" #include /* #define MAKEWORD(a, b)((WORD)(((BYTE)(((DWORD_PTR)(a)) & 
Quttap
·
2014-08-12 20:00
使用类作用域操作符进行成员函数调用问题
#include"
stdafx.h
" #include usingnamespacestd; classbase { public: intfunc() { return100; } private:
cjc211322
·
2014-08-12 16:00
C++ queue 和 deque的区别
queue例程1:#include"
stdafx.h
"#include#includeusingnamespacestd;int_tmain(intargc,_TCHAR*argv[]){queuemyQueue
目力过人
·
2014-08-12 13:19
c++
技术
使用c语言对mysql进行增删查改
#include"
stdafx.h
"#include//这个是必须添加的,不然就会出现102个错误 #include"mysql.h" #include#include #include staticMYSQL
huachao1001
·
2014-08-11 14:00
mysql
linux
C语言
总结系列_1(opencv需常用的小工程,续...)
作者:tornadomeet出处:http://www.cnblogs.com/tornadomeet 一、opencv读取图片并显示出来:代码为:1 #include"
stdafx.h
liuuze5
·
2014-08-09 16:00
C++调用成员函数需要this指针的情况
1、虚成员函数,因为需要this指针寻找虚表指针2、成员函数中对数据成员进行了操作#include"
stdafx.h
" #include #include usingnamespacestd; classA
cjc211322
·
2014-08-08 21:00
C++异常处理示例
#include "
stdafx.h
" #include #include #include /
loveRooney
·
2014-08-08 14:00
C++
C++构造函数初始化列表
先看两个例子,Demo1:#include"
stdafx.h
" #include usingnamespacestd; classStudentID{ public: StudentID(){ cout
sszgg2006
·
2014-08-07 19:00
C++静态成员变量需注意的问题
3、初始化时不加static示例#include"
stdafx.h
" #include usingnamespacestd; classA {
cjc211322
·
2014-08-07 19:00
C++类的静态成员
C++容器类对象函数参数问题
验证程序#include"
stdafx.h
" #include #include usingnamespacestd; voiddo_something1(list*ls) { ls->push_back
cjc211322
·
2014-08-07 17:00
函数参数传递
C++容器类对象
测试了下boost的序列化反序列化功能
. // #include"
stdafx.h
" #include #include #include #include #include #include #include #include /
lee353086
·
2014-08-07 16:00
OpenCV---图片生成视频
. */ #include"
stdafx.h
" #include #include #include #include #include #include #pragmacomment(lib,"shlwapi.lib
cjc211322
·
2014-08-07 14:00
opencv
图片生成视频
vs2010 matlab混合编程调用matlab引擎
// #include"
stdafx.h
" #include"engine.h" #include"windows.h" #pragmacomment(lib,"libeng.lib
wangyaninglm
·
2014-08-05 20:00
boost.system
// #include"
stdafx.h
" //#defineBOOST_ALL_NO_LIB #defineBOOST_SYSTEM_NO_LIB #include #include #include
davidsu33
·
2014-08-04 18:00
boost.system
Floyd(弗洛伊德算法)---每对顶点的最短路径---《数据结构》严蔚敏
// #include"
stdafx.h
" #include #include usingnamespacestd; #defineMAXVEX20 #defineINT_MAX10000 typedefstructArcNode
cjc211322
·
2014-08-04 16:00
每对顶点的最短路径
Floyd弗洛伊德算法
数据结构严蔚敏
最短路径---Dijkstra迪杰特斯拉算法---《数据结构》严蔚敏
// #include"
stdafx.h
" #include #include usingnamespacestd; #defineMAXVEX20 #defineINT_MAX10000 typedefstructArcNode
cjc211322
·
2014-08-04 15:00
最短路径
dijkstra
迪杰特斯拉算法
数据结构严蔚敏
MFC复制目录树
namespacekagula { voidCopyDirTree(CStringsrcDir,CStringdstDir,std::setsetExclude); }FireDirHelper.cpp#include"
stdafx.h
lee353086
·
2014-08-04 14:00
上一页
96
97
98
99
100
101
102
103
下一页
按字母分类:
A
B
C
D
E
F
G
H
I
J
K
L
M
N
O
P
Q
R
S
T
U
V
W
X
Y
Z
其他