-
map映射模板使用方法查看全部
-
map映射关系示意图查看全部
-
迭代器使用查看全部
-
vector使用实例查看全部
-
vector常用函数查看全部
-
vecrot模板的使用查看全部
-
初始化vector对象的方式查看全部
-
如果在使用函数的时候没有用 <> 来指定类型,那么我们的编译器会根据参数来自动选择一种模板函数查看全部
-
class Tank { private: string m_strCode; public: Tank(s_iCount++;) ~Tank(s_iCount--;) static int getCount(){return s_iCount;} static int s_iCount; }查看全部
-
int Tank::s_iCount=0 //单独赋值查看全部
-
静态的构造函数并不会在构造函数中实例化。查看全部
-
标准模版库查看全部
-
Watch(Time &t):m_tTime(t){}//构造函数,注意这双大括号查看全部
-
/** * 定义Watch类 * 数据成员:m_tTime * 成员函数:构造函数 * display用于显示时间 */ class Watch { public: Watch(Time &t):m_tTime(t) void display() { cout << m_tTime.m_iHour << endl; cout << m_tTime.m_iMinute << endl; cout << m_tTime.m_iSecond << endl; } private: Time m_tTime; }; Watch(Time &t):m_tTime(t)//构造函数查看全部
-
注意:在定义一个类模版的时候,如果我们类的函数定义在类外面,也需要将 template <typename T, int ...> 也要写在定义函数的函数体前面查看全部
举报
0/150
提交
取消