好的,我最近读了一些文章,上面说:
在 c++ 中声明的每个名称都有与之关联的类型。例如
int a; //type of a int
void foo(); //type is void(*)()
class bar; //what is type of bar here then ?
好的,我最近读了一些文章,上面说:
在 c++ 中声明的每个名称都有与之关联的类型。例如
int a; //type of a int
void foo(); //type is void(*)()
class bar; //what is type of bar here then ?