C++
zztan
这个作者很懒,什么都没留下…
展开
-
C++ 类 静态成员变量和静态成员函数
静态成员变量 可以被 静态成员函数和常规成员函数访问; 但是 静态成员函数 只能访问 静态成员变量; 不能访问常规成员变量; 因为 静态成员是 属于类的,不属于对象,不能访问具体对象的成员原创 2017-05-04 16:15:28 · 353 阅读 · 0 评论 -
time convert
//------------------------------------------------------------------------------ // // This routine converts number of days to a date structure. // //----------------------------------------原创 2017-11-02 17:58:10 · 788 阅读 · 0 评论 -
sizeof an array function --sizeof(Array)
/// extern array variable extern int array[]; printf(sizeof(array) ); /// the result is 4-- the pointer's size /// only when array is defined in current file int local_array[10] = {0}; printf(sizeo原创 2018-04-12 15:27:41 · 427 阅读 · 0 评论