C++11新特性(8)- 類內初始化

重複的初始化代碼 考察下面的代碼: enum LineStyle{    lsSolid,    lsDash,    lsDot,     }; class Rect { public:    Rect()        :left{0}, top{0}, right{0}, bottom{}        ,style{lsSolid}    {         }    Rect(int l
相關文章
相關標籤/搜索