// // Created by light on 19-9-11. // #include using namespace std; struct A { #define p "hello" }; class C { public: // static const 可以直接在类内部初始化 // no-const static 只能在外面初始化 static const int NUM = 3; //声明 enum con { NUM1 = 3 }; }; #define MAX(a,b) ((a) > (b) ? (a) : (b)) template inline int Max(const T& a, const T& b){ return (a>b ? a:b); } const int C::NUM; // 定义 int main() { cout << p << endl; // macro is global C c; cout << &c.NUM << endl; // 未定义的引用,需要定义 cout << C::NUM1 << endl; // cout << &C:NUM1 << endl; //error enum no address int a=5, b=0; cout<