推荐: blog.csdn.net/aquester https://github.com/eyjian https://www.cnblogs.com/aquester http://blog.chinaunix.net/uid/20682147.html
全部博文(594)
发布时间:2015-05-16 22:54:38
彻底理解C++指针.pdf目录目录11. 概念11.1. 双指针11.2. 指针数组11.3. 数组指针11.4. 常见指针定义解读12. 区别23. 兼容性24. 为何列数须相等?25. “1”的含义 36. 回归本质3 1. 概念.........【阅读全文】
发布时间:2015-05-11 16:17:42
对于“https”,使用curl时可加参数“-k”,它对应的 C/C++ 代码如下:curl_easy_setopt(_curl, CURLOPT_SSL_VERIFYPEER, 0);curl_easy_setopt(_curl, CURLOPT_SSL_VERIFYHOST, 0);作用是:接受服务器的ssl证书而不管合不合法。......【阅读全文】
发布时间:2015-05-07 18:02:12
gcc编译链接时,如果遇到下面这个错误:ld: attempted static link of dynamic object则表示一般是因为指定了链接参数-static,它的存在,要求链接的必须是静态库,而不能是共享库。如果是以-L加-l方式指定,则目录下必须有.a文件存在,否则会报-l的库文件找不到:ld: cannot find -lACE。.........【阅读全文】
发布时间:2015-05-06 15:12:03
GCC编译遇到如下的错误,可能是因为在编译时没有指定-fPIC,记住:-fPIC即是编译参数,也是链接参数:relocation R_x86_64_32S against `vtable for CMyClass` can not be used when making a shared object......【阅读全文】
发布时间:2015-05-04 21:08:36
接口请浏览:https://github.com/eyjian/mooon/blob/master/common_library/include/mooon/sys/log.h实现头文件请浏览:https://github.com/eyjian/mooon/blob/master/common_library/include/mooon/sys/safe_logger.h高效但仅多线程安全版本:https://github.com/eyjian/mooon/blob/master/common_library/src/sys/logg.........【阅读全文】
发布时间:2015-05-02 15:46:55
继承方式实现简单,请参见:https://github.com/eyjian/mooon/blob/master/common_library/include/mooon/sys/thread.h在C++11标准之前的实现较为复杂(可参见:https://github.com/eyjian/mooon/blob/master/common_library/include/mooon/sys/thread_engine.h):#ifndef MOOON_SYS_THREAD_ENGINE_H.........【阅读全文】
发布时间:2015-04-28 16:59:49
atomic_gcc.h:103: undefined reference to `__sync_sub_and_fetch_4'在x86上(x86_64不需要),编译参数需要加“-march=pentium4”,注意不是链接参数。......【阅读全文】
发布时间:2015-04-28 11:03:27
printf("UniqID: %"PRIu64"\n", uniq_id);test.cpp:35: error: expected `)' before 'PRIu64'make: *** [test.o] 错误 1上述错误,gcc编译时需要定义宏__STDC_FORMAT_MACROS,并且必须包含头文件inttypes.h。......【阅读全文】
发布时间:2015-04-23 14:09:56
nohup、&、setsid、fork和fg、bg究竟有啥区别?.pdf目录目录11. 名词解释12. 什么是守护进程?22.1. 后台运行22.2. 解释关系23. 以“&”方式运行有何问题? 24. fork25. setsid&setuid35.1. setuid应用场景 35.2. 案例3.........【阅读全文】
yuanxy20132014-01-14 14:48
LZ,你的基于C++的纯面向对象的通用高性能大并发TCP-SERVER/CLIENT开发框架实践系列之《前言篇》,《基础篇》写得非常棒,但是《服务器篇》、《客户端篇》却找不到,恳请楼主赐读。