[c++]使用花括號初始化結構體

c++11中 可使用花括號直接初始化結構體,示例代碼以下:ios #include<iostream> #include<string> struct TT{ int t1; std::string t2; }; int main(){ TT t{1,"hello"}; std::cout << t.t1 << ", " << t.t2 << std::endl
相關文章
相關標籤/搜索