问题:在网上看到别人写的c++定义构造函数的代码如下:
struct Gnode{
int label; //
vector<Gnode *> nbs;
Gnode(int x): label(x) {} //构造函数 ?
};
请问,这个第3行构造函数为什么可以这样写,为何label(x)可以写在大括号的前面?
不是应该写成:
struct Gnode{
int label; //
vector<Gnode *> nbs;
Gnode(int x){
label=x;
}
};
这种形式吗?
对C++结构体部分不太熟悉,求大佬解释一下?
另外我如果想补充一下自己的这些知识,有啥推荐的书吗? 重新学一遍大一时候学的C++课本??