运算符重载 提高程序的可读性 如果一个类没有提供赋值运算符,则默认提供一个 (浅拷贝) 如果一个类提供了拷贝构造函数,那么也要提供一个重载的赋值运算函数 Person& Person::operator=(const Person &other){ if(this==&other) return * ...
分类:
其他好文 时间:
2016-11-12 19:38:54
阅读次数:
141
1)括号运算符()重载2)【面试题】&&,||能不能做操作符重载?3)运算符极致练习:【提高】运算符重载括号运算符()重载
chunli@Linux:~/c++$catmain.cpp
#include<iostream>
usingnamespacestd;
classA
{
public:
A(inta,intb)
{
this->a=a;
this->b=b;..
分类:
编程语言 时间:
2016-07-04 19:05:46
阅读次数:
207