|
12 | 12 | * C 语言常见问题集: <http://c-faq-chn.sourceforge.net/ccfaq/>
|
13 | 13 | * The C++ Standard Library - A Tutorial and Reference: <http://www.cppstdlib.com/>
|
14 | 14 |
|
15 |
| -* The International Obfuscated C Code Contest: <http://www.ioccc.org/> |
16 |
| - |
17 |
| -* Comparing Two High-Performance I/O Design Patterns: <http://www.artima.com/articles/io_design_patterns.html> |
18 |
| -* 使您的软件运行起来——防止缓冲区溢出:<https://www.ibm.com/developerworks/cn/security/buffer-defend/index.html#main> |
19 |
| -* 屏幕输出VS文件输出:<http://blog.csdn.net/jiangxinnju/article/details/26081963> |
20 |
| -* C/C++内存泄漏及检测: <http://www.cnblogs.com/skynet/archive/2011/02/20/1959162.html> |
21 |
| -* 浅谈C/C++内存泄露及其检测工具: <http://www.cnblogs.com/taoxu0903/archive/2007/10/27/939261.html> |
22 |
| -* 内存泄露检测工具比较: <http://hi.baidu.com/cpuramdisk/item/22be18c22fd58a2eee4665db> |
23 |
| -* 亲密接触C可变参数函数 : <http://blog.csdn.net/linyt/article/details/2243605> |
24 |
| -* TCP连接中的TIME_WAIT状态: <http://blog.csdn.net/sunnydogzhou/article/details/6572071> |
25 |
| -* see also: 《TCP-IP详解卷1:协议》第十八章 |
26 |
| -* TCP可靠传输及流量控制系列六:TCP连接中的TIME_WAIT状态: <http://zenhumany.blog.163.com/blog/static/1718066332010827104655541/> |
27 |
| -* C++项目中的extern "C" {}: <http://www.cnblogs.com/skynet/archive/2010/07/10/1774964.html> |
28 |
| -* 由函数clock想到的: <http://blog.csdn.net/jiangxinnju/article/details/25411743> |
29 |
| -* 理解 pkg-config 工具: <http://www.chenjunlu.com/2011/03/understanding-pkg-config-tool/> |
30 |
| -* see also: <http://technet.microsoft.com/zh-cn/library/zk17ww08> |
31 |
| -* C/C++中的abort、atexit、exit和_Exit: <http://blog.csdn.net/jiangxinnju/article/details/38155973> |
32 |
| -* setjmp()/longjmp()的使用方法和场合: <http://www.cnblogs.com/lowhere/archive/2008/08/22/1274309.html> |
33 |
| -* C++ 工程实践(7):iostream 的用途与局限: <http://blog.csdn.net/solstice/article/details/6612179> |
34 |
| -* 指针的大小: <http://shansun123.iteye.com/blog/398601> |
35 |
| -* C/C++指针原理: <http://blog.csdn.net/column/details/c-pointer.html> |
36 |
| -* C++ STL轻松导学: <http://morningspace.51.net/resource/stlintro/stlintro.html?s=85fee499fe8534afc1f76ceceb0d41ff> |
37 |
| -* undefined reference问题总结: <http://ticktick.blog.51cto.com/823160/431329/> |
38 |
| -* Enabling string conversion functions in MinGW: <http://tehsausage.com/mingw-to-string> |
39 |
| -* C++ Rocks!: <http://cpprocks.com/> |
40 |
| -* 减少C++代码编译时间的方法: <http://www.cnblogs.com/misserwell/p/4343927.html> |
41 |
| -* C++编译错误cannot have cv-qualifier: <https://www.cnblogs.com/jiangxinnju/p/5516904.html> |
42 |
| -* 在 console mode 中使用 C/C++ 编译器: <https://blog.csdn.net/dlyhlq/article/details/2104217> |
43 |
| -* 基于对象和面向对象的区别: <http://www.cnblogs.com/jiangxinnju/p/5516880.html> |
44 |
| -* const 不再迷茫: <https://www.cnblogs.com/jiangxinnju/p/5516881.html> |
45 |
| -* C语言中随机数相关问题: <https://www.cnblogs.com/jiangxinnju/p/5516905.html> |
46 |
| -* C/C++大数库简介: <https://www.cnblogs.com/jiangxinnju/p/5516911.html> |
47 |
| -* C++资源之不完全导引: C++资源之不完全导引.docx |
48 |
| - |
49 | 15 | ## Tools
|
50 | 16 |
|
51 | 17 | * cdecl: <http://www.cdecl.org/>
|
|
86 | 52 | * Security Features in the CRT: <https://docs.microsoft.com/en-us/cpp/c-runtime-library/security-features-in-the-crt>
|
87 | 53 | * Linker Tools Warning LNK4098: <https://docs.microsoft.com/en-us/cpp/error-messages/tool-errors/linker-tools-warning-lnk4098>
|
88 | 54 | * LINK : fatal error LNK1104: 无法打开文件“LIBCD.lib”: <https://www.cnblogs.com/hyfemma/archive/2010/11/14/1876846.html>
|
| 55 | +* 链接器工具错误 LNK2026: <https://docs.microsoft.com/zh-cn/previous-versions/visualstudio/visual-studio-2008/100ezk17(v=vs.90)> |
| 56 | +* DUMPBIN Reference: <https://docs.microsoft.com/en-us/cpp/build/reference/dumpbin-reference> |
| 57 | +* atexit和onexit的主要用法和区别: <http://technet.microsoft.com/zh-cn/library/tze57ck3> |
| 58 | +* _onexit, _onexit_m: <http://technet.microsoft.com/zh-cn/library/zk17ww08> |
89 | 59 | * 为 Visual C++ 项目创建的文件类型: <https://docs.microsoft.com/zh-cn/cpp/ide/file-types-created-for-visual-cpp-projects>
|
90 | 60 | * VC知识库: <http://www.vckbase.com/>
|
91 | 61 | * VC 常用数据类型总结 俩篇: <http://www.cnblogs.com/sadier/articles/102085.html>
|
|
98 | 68 | * visual studio 2008中头文件和库文件路径设置: <http://blog.sina.com.cn/s/blog_77c35cff01010u7b.html>
|
99 | 69 | * Useful enhancements for Visual Studio .NET: <http://www.codeproject.com/Articles/2704/Useful-enhancements-for-Visual-Studio-NET>
|
100 | 70 | * Windows动态库与Linux共享对象比较: <https://blog.csdn.net/jatula/article/details/83324280>
|
101 |
| -* atexit和onexit的主要用法和区别: <http://technet.microsoft.com/zh-cn/library/tze57ck3> |
102 | 71 | * ODBC中的FX/Bulk RFX数据交换机制分析: <http://blog.csdn.net/workdog/article/details/1524126>
|
| 72 | +* VC++6.0编译时总死机,安装vcsp6补丁: <https://blog.csdn.net/xs574924427/article/details/8242414> |
| 73 | +* DEBUG和RELEASE 版本差异及调试相关问题: <https://blog.csdn.net/orc/article/details/8758> |
| 74 | +* Debug和Release有什么区别: <https://blog.csdn.net/chenhu_doc/article/details/932305> |
| 75 | +* MSVC vs. MinGW 之 (lib,dll,def,obj,exe) vs (a,dll,def,o,exe): <http://blog.sina.com.cn/s/blog_5ea0192f010102ig.html> |
103 | 76 |
|
104 | 77 | ## Linux C++
|
105 | 78 |
|
|
249 | 222 |
|
250 | 223 | Xapian is an Open Source Search Engine Library, released under the GPL v2+. It's written in C++, with bindings to allow use from Perl, Python, PHP, Java, Tcl, C#, Ruby, Lua, Erlang and Node.js (so far!)
|
251 | 224 |
|
252 |
| -* <http://xapian.org/> |
| 225 | +* <http://xapian.org/> |
| 226 | + |
| 227 | +## Others |
| 228 | + |
| 229 | +* The International Obfuscated C Code Contest: <http://www.ioccc.org/> |
| 230 | + |
| 231 | +* Comparing Two High-Performance I/O Design Patterns: <http://www.artima.com/articles/io_design_patterns.html> |
| 232 | +* 使您的软件运行起来——防止缓冲区溢出:<https://www.ibm.com/developerworks/cn/security/buffer-defend/index.html#main> |
| 233 | +* 屏幕输出VS文件输出:<http://blog.csdn.net/jiangxinnju/article/details/26081963> |
| 234 | +* C/C++内存泄漏及检测: <http://www.cnblogs.com/skynet/archive/2011/02/20/1959162.html> |
| 235 | +* 浅谈C/C++内存泄露及其检测工具: <http://www.cnblogs.com/taoxu0903/archive/2007/10/27/939261.html> |
| 236 | +* 内存泄露检测工具比较: <http://hi.baidu.com/cpuramdisk/item/22be18c22fd58a2eee4665db> |
| 237 | +* 亲密接触C可变参数函数 : <http://blog.csdn.net/linyt/article/details/2243605> |
| 238 | +* TCP连接中的TIME_WAIT状态: <http://blog.csdn.net/sunnydogzhou/article/details/6572071> |
| 239 | +* see also: 《TCP-IP详解卷1:协议》第十八章 |
| 240 | +* TCP可靠传输及流量控制系列六:TCP连接中的TIME_WAIT状态: <http://zenhumany.blog.163.com/blog/static/1718066332010827104655541/> |
| 241 | +* C++项目中的extern "C" {}: <http://www.cnblogs.com/skynet/archive/2010/07/10/1774964.html> |
| 242 | +* 由函数clock想到的: <http://blog.csdn.net/jiangxinnju/article/details/25411743> |
| 243 | +* 理解 pkg-config 工具: <http://www.chenjunlu.com/2011/03/understanding-pkg-config-tool/> |
| 244 | +* C/C++中的abort、atexit、exit和_Exit: <http://blog.csdn.net/jiangxinnju/article/details/38155973> |
| 245 | +* setjmp()/longjmp()的使用方法和场合: <http://www.cnblogs.com/lowhere/archive/2008/08/22/1274309.html> |
| 246 | +* C++ 工程实践(7):iostream 的用途与局限: <http://blog.csdn.net/solstice/article/details/6612179> |
| 247 | +* 指针的大小: <http://shansun123.iteye.com/blog/398601> |
| 248 | +* C/C++指针原理: <http://blog.csdn.net/column/details/c-pointer.html> |
| 249 | +* C++ STL轻松导学: <http://morningspace.51.net/resource/stlintro/stlintro.html?s=85fee499fe8534afc1f76ceceb0d41ff> |
| 250 | +* undefined reference问题总结: <http://ticktick.blog.51cto.com/823160/431329/> |
| 251 | +* Enabling string conversion functions in MinGW: <http://tehsausage.com/mingw-to-string> |
| 252 | +* C++ Rocks!: <http://cpprocks.com/> |
| 253 | +* 减少C++代码编译时间的方法: <http://www.cnblogs.com/misserwell/p/4343927.html> |
| 254 | +* C++编译错误cannot have cv-qualifier: <https://www.cnblogs.com/jiangxinnju/p/5516904.html> |
| 255 | +* 在 console mode 中使用 C/C++ 编译器: <https://blog.csdn.net/dlyhlq/article/details/2104217> |
| 256 | +* 基于对象和面向对象的区别: <http://www.cnblogs.com/jiangxinnju/p/5516880.html> |
| 257 | +* const 不再迷茫: <https://www.cnblogs.com/jiangxinnju/p/5516881.html> |
| 258 | +* C语言中随机数相关问题: <https://www.cnblogs.com/jiangxinnju/p/5516905.html> |
| 259 | +* C/C++大数库简介: <https://www.cnblogs.com/jiangxinnju/p/5516911.html> |
| 260 | +* C++资源之不完全导引: C++资源之不完全导引.docx |
0 commit comments