J
Jianli Shen
New c++
When look through code, I always find lot of funtions are
declared as (in .h):
static void function1();
when implementing,(in .cpp), just
void function1(){
}
It will be nice to explain the art of usage for static member, extern member
(no extern function)etc.
Thanks
When look through code, I always find lot of funtions are
declared as (in .h):
static void function1();
when implementing,(in .cpp), just
void function1(){
}
It will be nice to explain the art of usage for static member, extern member
(no extern function)etc.
Thanks