上一页 1 ··· 4 5 6 7 8 9 10 11 下一页
摘要: libevent实现简单的静态页面 https://blog.csdn.net/u012528000/article/details/78227515 https://www.cnblogs.com/lit10050528/p/6168465.html https://blog.csdn.net/l 阅读全文
posted @ 2019-08-08 17:52 hostid 阅读(252) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/baidu_26678247/article/details/74945752 https://www.cnblogs.com/omme/p/10114381.html 阅读全文
posted @ 2019-08-05 18:01 hostid 阅读(282) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/wyt007/p/8023391.html https://blog.csdn.net/qq_33324878/article/details/81076185 //nlog https://www.cnblogs.com/felixnet/p/549 阅读全文
posted @ 2019-08-05 16:23 hostid 阅读(1177) 评论(0) 推荐(0)
摘要: ··· BOOL CtestDialogApp::InitInstance() { char exeFullPath[MAX_PATH] = {0}; // MAX_PATH在API中有定义 int len=GetModuleFileNameA(NULL, exeFullPath, //应用程序的全 阅读全文
posted @ 2019-08-05 14:52 hostid 阅读(171) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/liuyoung/p/7819052.html 阅读全文
posted @ 2019-08-05 14:50 hostid 阅读(131) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/guoqianqian5812/article/details/50344041 https://blog.csdn.net/zwz2011303359/article/details/80871050 https://blog.csdn.net/Fara 阅读全文
posted @ 2019-08-01 16:47 hostid 阅读(384) 评论(0) 推荐(0)
摘要: //new与不new的区别 https://www.cnblogs.com/judes/p/9290412.html https://zhidao.baidu.com/question/1240531333575505579.html https://bbs.csdn.net/topics/3001 阅读全文
posted @ 2019-08-01 15:06 hostid 阅读(269) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/jimodetiantang/p/9016826.html https://www.cnblogs.com/san fu su/p/5733058.html https://www.cnblogs.com/IamTing/p/4541901.html 阅读全文
posted @ 2019-08-01 10:22 hostid 阅读(269) 评论(0) 推荐(0)
摘要: //c++ http://c.biancheng.net/view/275.html //C https://www.cnblogs.com/mycom/archive/2010/12/05/1897264.html https://www.cnblogs.com/ylbtech/p/3151771 阅读全文
posted @ 2019-07-30 15:36 hostid 阅读(211) 评论(0) 推荐(0)
摘要: https://www.cnblogs.com/traeyee/p/4892410.html https://blog.csdn.net/Windgs_YF/article/details/80927058 https://www.cnblogs.com/Braveliu/p/4263145.htm 阅读全文
posted @ 2019-07-30 14:17 hostid 阅读(192) 评论(0) 推荐(0)
摘要: SI与codeblocks编码设置 1、以UTF 8格式打开源码文件,并将UTF 8格式作为默认的编码模式。 情况一:源文件的格式为UTF 8(str="中文") codeblocks的打开格式、保存格式、代码解析格式、内码编码格式、与设置一致,解析输出不能看到准确的汉子,这取决操作系统,因为国内w 阅读全文
posted @ 2019-07-12 17:53 hostid 阅读(871) 评论(0) 推荐(0)
摘要: iostream与iostream.h 1、iostream是标准的C++库 2、iostream.h是非标准的C++库。如果使用前者,需要搭配using namespace XXX。后者则不需要。 include //非标准输入输出流,没有命名空间的概念 cout //标准输入输出流cout 阅读全文
posted @ 2019-07-12 12:07 hostid 阅读(806) 评论(0) 推荐(0)
摘要: (1)直接赋值: int a = 1; (2)初始化列表: int a{1},当用于内置类型的变量时,如果初始值存在丢失信息的风险,编译器将会报错, 如:int a{0.444} 阅读全文
posted @ 2019-07-12 11:39 hostid 阅读(619) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/qq844352155/article/details/39050685 https://blog.csdn.net/z_ml118/article/details/78253313 https://www.cnblogs.com/whlook/p/657 阅读全文
posted @ 2019-07-04 15:03 hostid 阅读(610) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/zhanghuaichao/article/details/79459130 https://blog.51cto.com/jackyblf/1896360 https://www.runoob.com/design pattern/singleton p 阅读全文
posted @ 2019-07-04 11:46 hostid 阅读(139) 评论(0) 推荐(0)
摘要: 一、 include include using namespace std; class test { public: test(); void func(int a) { printf("void func(int a)\n"); } void func(char a) { printf("vo 阅读全文
posted @ 2019-07-04 10:05 hostid 阅读(707) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/u010183728/article/details/81913729 %C2%A03.3.1%20list%E5%AE%9A%E4%B9%89 https://blog.csdn.net/qq_36779888/article/details/82220 阅读全文
posted @ 2019-07-03 16:10 hostid 阅读(113) 评论(0) 推荐(0)
摘要: 转发:https://blog.csdn.net/lms1008611/article/details/81408236 https://zhidao.baidu.com/question/339125215.html 阅读全文
posted @ 2019-06-29 13:45 hostid 阅读(261) 评论(0) 推荐(0)
摘要: 编译 ssl编译 shared:决定是否生成动态libssl动态库 // ./config prefix=/usr/local openssldir=/usr/local/openssl ./config shared prefix=/usr/local openssldir=/usr/local/ 阅读全文
posted @ 2019-06-20 13:41 hostid 阅读(298) 评论(0) 推荐(0)
摘要: https://blog.csdn.net/zhoujian0827/article/details/78354151 https://blog.csdn.net/shimadear/article/details/80291194 https://blog.csdn.net/fovwin/arti 阅读全文
posted @ 2019-06-19 22:53 hostid 阅读(608) 评论(0) 推荐(0)
上一页 1 ··· 4 5 6 7 8 9 10 11 下一页