-
为什么是引用查看全部
-
迭代器查看全部
-
vector常用函数查看全部
-
初始化vector对象的方式查看全部
-
友员的使用查看全部
-
友元函数关键字查看全部
-
要使用类模版,必须将类声明类定义写在同一个.h头文件中查看全部
-
类模版:每定义一个成员函数,都要在上面加 template<class T>查看全部
-
函数模版声明定义查看全部
-
后置一元运算符: 类型名 &operator++(int);//形参里面的int 是后置运算符的标志查看全部
-
类名 ostream& operator <<(ostream &合法名,const 类名 &合法命)查看全部
-
输出运算符必须写成友元函数的形式 friend ostream&operator<<(ostream&output,Coordinate&coor) { output<<coor3.getX<<","<<coor3.getY<<endl; return output }查看全部
-
索引定义查看全部
-
索引运算符: int operator[](int index) 索引运算符不可以用于友元函数,因为索引运算符第一个引用必须是this指针,而友元函数是自由的查看全部
-
friend ostream &operator <<(ostream &output,Coordinate&coor)查看全部
举报
0/150
提交
取消