1.C++的結構體變量在聲明的時候可以省略struct,在c中這樣是不可以的,例子如下
#include<iostream>#include<string>using namespace std;struct test{ int num; string name;};int main(void){ test t; t.num=1; t.name="jack"; cout<<t.num<<" "<<t.name<<endl; }
2.c++的結構體聲明可以聲明在main()函數中,也可以在main()函數之前,在之前的話,整個程序都可以調用,這也是最常用的方式;而在內部的話,只能在函數內使用,也就是說在聲明的函數內可以使用,類似于局部變量的概念。如下
int main(void){ struct test{ int num; }; test hello;//right }void t(){ test t; //wrong}