Loading...
预处理与宏预处理... #define DEBUG ... #ifdef DEBUG//判断DEBUG是否被定义 ... #endif ...
struct与class的区别内部成员变量及成员函数的默认权限属性struct默认权限属性是public的,而class默认的权限属性是private的s...