最近复习primer,记录一些笔记:
1. static
class Test{
public:
...
private:
static Test obj1; //ok
Test *obj2;
Test &obj3;
Test obj4; //error
};
2. c中const是extern,c++中const是static存储的。
/*a.h*/
const int a = 10;
/*b.c*/ /*c.c*/
#include "a.h" #include "a.h"
c有错, c++无错。
3.
阅读(534) | 评论(0) | 转发(0) |