c++中struct應用留意事項。本站提示廣大學習愛好者:(c++中struct應用留意事項)文章只能為提供參考,不一定能成為您想要的結果。以下是c++中struct應用留意事項正文
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 }