摘要:
[转载自: http://www.cppblog.com/szhoftuncun/archive/2007/10/31/35356.html] #pragma once与 #ifndef的区别 Specifies that the file will be included (opened) only once by the compiler when compiling a source co... 阅读全文
摘要:
C和C++对函数的处理方式是不同的.extern "C"是使C++能够调用C写作的库文件的一个手段,如果要对编译器提示使用C的方式来处理函数的话,那么就要使用extern "C"来说明。 时常在cpp的代码之中看到这样的代码: #ifdef __cplusplus ... 阅读全文