摘要:
在C++中,const inline 或 friend 这些概念,我个人觉得很容易理解, 但是这个static有时候有些迷糊了。 回忆在C中,1号C文件内有个int Xy;如果在2号文件内想使用Xy这个变量,2号写成 extern int Xy;就取到了;但是如果1号C文件写成这样 static i 阅读全文
摘要:
C++是有面向对像的特性,但有些概念还是容易让人迷糊的: #include <iostream> #define log(x) std::cout<<x; extern void Log(const char* p); /* 一个类 */ class A{ private: int i; publi 阅读全文