close
Ex:
typedef int type;
class Test
{
Public:
Test();
Test(type,type);
Private:
type number;
};
Test::Test()
{
}
宣告: Test t(); //建構子設定初值
Test t1; //真正要使用而new的物件
Test t2(a,b); //overloading construction
建構式初值器(Constructor Initializer)
test::test():
a(1),b(2),c(3) {} //可提升速度
全站熱搜
留言列表