目录

  1. 输入和输出操作符
  2. 算术操作符和关系操作符
  3. 下标操作符
  4. 自加、自减操作符
  5. 成员访问操作符

1  输入和输出操作符

1.1 输出操作符

1.1.1 示例

#include <iostream>
#include <string>
using namespace std; class A
{
friend ostream& operator<<(ostream& out, const A& a);
public:
A(const string &s = "", int v = ) : ss(s), val(v) {} //构造函数带默认参数
private:
int val;
string ss;
}; ostream& operator<<(ostream& out, const A& a)
{
out << "a.ss:" << a.ss << " " << "a.val:" << a.val;
return out;
} int main()
{
A a("hello", );
cout << a << endl;
A b;
cout << b << endl;
}

结果

1.1.2 说明

1)IO操作必须为非成员函数

原因:I/O操作的接口返回的是ostream&对象(只有返回左值,这样才可以连续的输出,例如cout << a << b)。自定义的输出操作符应该与其相似。如果将其定义为成员函数(有个首默认参数this,即指向自己的指针),左操作数只能是该类型的对象,则没法办到。例如:Sales_item; item << cout; 与常规定义相反,因此只能为非成员函数。

2)因为要访问指定类的私有成员,所以在该类中声明输出操作符为友员函数。

3)第一个形参必须为引用。因为I/O对象不可以复制。同理返回值必须为一个引用。

4)第一个形参不可以为const,因为写入到流会改变其值。

5)第二个为引用,这样可以避免复制。参数可以为const,可以接收const对象和非const对象;否则,如果为非const,则只能接收非coust对象。一般为const,毕竟只是输出而已,不改变对象。

1.2 输入操作符

1.2.1 示例

#include <iostream>
#include <string>
using namespace std; class A
{
friend ostream& operator<<(ostream& out, const A& a);
friend istream& operator>>(istream& in, A& a);
public:
A(const string &s = "", int v = ) : ss(s), val(v) {}
private:
int val;
string ss;
}; ostream& operator<<(ostream& out, const A& a)
{
out << "a.ss:" << a.ss << " " << "a.val:" << a.val;
return out;
}
istream& operator>>(istream& in, A& a)
{
in >> a.ss >> a.val;
if(in)
{
cout << "Input right" << endl;
}
else
{
cout << "in.fail:" << in.fail() << endl;
cout << "input wrong!" << endl;
}
return in;
} int main()
{
A a("hello", );
cout << a << endl;
A b;
cin >> b;
cout << b << endl;
}

结果

1.2.2 说明

1)输入与输出操作符的重要区别:输入操作符必须处理错误和文件结束的可能性。

2)输入如果有多个值的话,如果一个数错了,整个输入对象就错了(False),从示例中可以看出,前边赋值正确的已经生效了,后边的用了默认值,可以这样设计:如果输入错误,将整个对象复位,恢复到最初的状态,例:

#include <iostream>
#include <string>
using namespace std; class A
{
friend ostream& operator<<(ostream& out, const A& a);
friend istream& operator>>(istream& in, A& a);
public:
A(const string &s = "", int v = ) : ss(s), val(v) {}
A(const A& a)
{
ss = a.ss;
val = a.val;
} A& operator=(const A& a)
{
if(this != &a)
{
ss = a.ss;
val = a.val;
return *this;
}
}
private:
int val;
string ss;
}; ostream& operator<<(ostream& out, const A& a)
{
out << "a.ss:" << a.ss << " " << "a.val:" << a.val;
return out;
}
istream& operator>>(istream& in, A& a)
{
in >> a.ss >> a.val;
if(in)
{
cout << "Input right" << endl;
}
else
{
cout << "in.fail:" << in.fail() << endl;
cout << "input wrong!" << endl;
a = A();
}
return in;
} int main()
{
A a("hello", );
cout << a << endl;
A b;
b = a;
cin >> b;
cout << b << endl;
}

2 算术操作符和关系操作符

2.1 相等操作符

2.1.1 示例

#include <iostream>
#include <string>
using namespace std; class A
{
friend bool operator==(const A& a, const A& b);
friend bool operator!=(const A& a, const A& b);
public:
A(string s = "", int v = ) : ss(s), val(v) {}
private:
string ss;
int val;
}; bool operator==(const A& a, const A& b)
{
return a.ss == b.ss && a.val == b.val;
} bool operator!=(const A& a, const A& b)
{
return !(a == b);
} int main()
{
A a("hello", );
A b("hello", );
A c("hello", );
cout << "a == b?:" << (a == b) << endl;
cout << "a != b?:" << (a != b) << endl;
cout << "b == c?:" << (b == c) << endl;
cout << "b != c?:" << (b != c) << endl;
}

结果

2.1.2说明

1)定义了类的==,对应的应该定义!=

2.2 关系操作符

2.2.1 示例

#include <iostream>
#include <string>
using namespace std; class A
{
friend bool operator<(const A& a, const A& b);
public:
A(string s = "", int v = ) : ss(s), val(v) {}
private:
string ss;
int val;
}; bool operator<(const A& a, const A& b)
{
return (a.val < b.val);
} int main()
{
A a("hello", );
A b("he", );
cout << "a < b?:" << (a < b) << endl;
}

结果

2.2.2 说明

1)定义了相等操作符,一般也定义关系操作符

2)关系操作符要根据具体的含义定义

2.3 赋值操作符

2.3.1 示例

#include <iostream>
#include <string>
using namespace std; class A
{
friend ostream& operator<<(ostream& out, const A& a);
public:
A(string s = "", int v = ) : ss(s), val(v) {}
A& operator=(const A& a);
private:
string ss;
int val;
}; ostream& operator<<(ostream &out, const A& a)
{
out << "a.ss:" << a.ss << " " << "a.val:" << a.val;
} A& A::operator=(const A& a)
{
if(this != &a)
{
ss = a.ss;
val = a.val;
}
return *this;
} int main()
{
A a("hello", );
A b("he", );
cout << b << endl;
b = a;
cout << b << endl;
}

2.3.2 说明

1) 复制操作符完成对同类对象的赋值,参数一般为对类类型的const引用。

2)如果没有,编译器会自动合成一个,类的赋值操作符一定为类的成员变量,以便编译器是否需要自己合成一个。

3)返回值必须为*this的引用,这样就不需要创建和撤销结果的临时副本。同理的有复合赋值操作符,例如

#include <iostream>
#include <string>
using namespace std; class A
{
friend ostream& operator<<(ostream& out, const A& a);
public:
A(string s = "", int v = ) : ss(s), val(v) {}
A& operator+=(const A &);
private:
string ss;
int val;
}; ostream& operator<<(ostream &out, const A& a)
{
out << "a.ss:" << a.ss << " " << "a.val:" << a.val;
} A& A::operator+=(const A& a)
{
val += a.val;
return *this;
} int main()
{
A a("hello", );
A b("he", );
a += b;
cout << a << endl;
}

结果

2.4 加法操作符

2.4.1 示例

#include <iostream>
#include <string>
using namespace std; class A
{
friend ostream& operator<<(ostream& out, const A& a);
friend A operator+(const A &a ,const A &b);
public:
A(string s = "", int v = ) : ss(s), val(v) {}
A(const A&);
A& operator+=(const A &);
private:
string ss;
int val;
}; A::A(const A& a)
{
ss = a.ss;
val = a.val;
} ostream& operator<<(ostream &out, const A& a)
{
out << "a.ss:" << a.ss << " " << "a.val:" << a.val;
} A operator+(const A &a ,const A &b)
{
A tmp(a);
tmp += b;
return tmp;
} A& A::operator+=(const A& a)
{
val += a.val;
return *this;
} int main()
{
A a("hello", );
A b("he", );
a += b;
cout << a + b << endl;
}

2.4.2 说明

1) 根据复合操作符(如+=)实现算术操作符(如+),比其他方式更有效

3 下标操作符

3.1.1 示例

#include <iostream>
#include <string>
using namespace std; class A
{
friend ostream& operator<<(ostream& out, const A& a);
public:
A(string s = "", int v = ) : ss(s), val(v) {}
char& operator[](const size_t);
const& char operator[](const size_t) const;
private:
string ss;
int val;
}; ostream& operator<<(ostream& out, const A& a)
{
out << "a.val:" << a.val << " " << "a.ss:" << a.ss;
return out;
} char& A::operator[](const size_t index)
{
return ss[index];
} const char& A::operator[](const size_t index) const
{
return ss[index];
} int main()
{
A a("hello", );
cout << a[] << endl;
}

结果

e

3.1.2 说明

1) 下标操作必须为函数成员,因为传递一个参数,还需要另一个指向自己的指针参数,正好函数成员的this可以胜任。

2) 类定义下标时,一般定义两个版本:一个为非const成员,并返回非const引用; 另一个为const成员,并返回const引用。这样应用与const对象时,返回值应为const引用,不能用作赋值的目标。

4 自加、自减操作符

4.1 前置自加、自减操作符

4.1.1 示例

#include <iostream>
#include <string>
using namespace std; class A
{
friend ostream& operator<<(ostream& out, const A& a);
public:
A(string s = "", int v = ) : ss(s), val(v) {}
A& operator++();
A& operator--();
private:
string ss;
int val;
}; ostream& operator<<(ostream& out, const A& a)
{
out << "a.val:" << a.val << " " << "a.ss:" << a.ss;
return out;
} A& A::operator++()
{
++val;
return *this;
} A& A::operator--()
{
--val;
return *this;
} int main()
{
A a("hello", );
cout << a << endl;
++a;
cout << a << endl;
++a;
cout << a << endl;
--a;
cout << a << endl;
}

结果

4.2 后置自加、自减操作符

4.2.1 示例

#include <iostream>
#include <string>
using namespace std; class A
{
friend ostream& operator<<(ostream& out, const A& a);
public:
A(string s = "", int v = ) : ss(s), val(v) {}
A& operator++();
A& operator--();
A operator++(int);
A operator--(int);
private:
string ss;
int val;
}; ostream& operator<<(ostream& out, const A& a)
{
out << "a.val:" << a.val << " " << "a.ss:" << a.ss;
return out;
} A& A::operator++()
{
++val;
return *this;
} A& A::operator--()
{
--val;
return *this;
}
A A::operator++(int)
{
A tmp(*this);
++(*this);
return tmp;
} A A::operator--(int)
{
A tmp(*this);
--(*this);
return tmp;
} int main()
{
A a("hello", );
cout << a << endl;
++a;
cout << a << endl;
++a;
cout << a << endl;
cout << "hello" << endl;
cout << (a--) << endl;;
cout << a << endl;
}

4.2.2 说明

1)为了区分与前置自加、自减操作符的区别,后置需要接受一个而外的(无用的)的int型形参。使用后缀式操作符时,编译器提供0作为这个形参的实参,其唯一目的是为了区别前缀、后缀。

2)a++返回的是加之前的状态,因此,定义一个局部对象,保存(*this),最后返回这个局部变量的备份(注意不可以为引用,毕竟是局部的)。

5. 成员访问操作符

5.1.1 示例

#include <iostream>
#include <string>
using namespace std;
class B
{
public:
void print_B() { cout << "hello !!" << endl; }
};
class U_Ptr
{
friend class HasPtr;
B* ip;
size_t use;
U_Ptr(B *p) : ip(p), use() {}
~U_Ptr() { delete ip; }
}; class HasPtr
{
public:
HasPtr(B *p, int i) : ptr(new U_Ptr(p)), val(i) {}
HasPtr(const HasPtr &orig) : ptr(orig.ptr), val(orig.val) { ++ptr->use; }
HasPtr& operator=(const HasPtr &orig);
~HasPtr() { if(--ptr->use == ) delete ptr; }
B& operator*() { return *ptr->ip; }
B* operator->() { return ptr->ip; }
private:
U_Ptr *ptr;
int val;
}; HasPtr& HasPtr::operator=(const HasPtr &orig)
{
if(this != &orig)
{
ptr = orig.ptr;
val = orig.val;
++(ptr->use);
}
return *this;
} int main()
{
HasPtr hasptr1(new B, );
HasPtr hasptr2(hasptr1);
*hasptr1;
hasptr1->print_B();
}

结果

hello!!

5.1.2 说明

1) 箭头必须定义为成员函数, 解引用不要求定义为成员,但是可以作为成员。

2) 解引用和箭头操作常用在实现智能指针的类中。

【c++】重载操作符的更多相关文章

  1. 《精通C#》索引器与重载操作符(11.1-11.2)

    1.索引器方法结构大致为<modifier><return type> this [argument list],它可以在接口中定义: 在为接口声明索引器的时候,记住声明只是表 ...

  2. C++ 重载操作符与转换

    <C++ Primer 4th>读书笔记 重载操作符是具有特殊名称的函数:保留字 operator 后接需定义的操作符号. Sales_item operator+(const Sales ...

  3. 解释清楚c++的重载操作符【用自己的话,解释清楚】

    C++中对于内置的变量及标准库中常见的类定义类常见的操作符含义,对于自定义的类也可以通过关键字operate 重载操作符的含义. C++中支持重载的目的 诚然操作符的重载可以通过使用函数实现同样的功能 ...

  4. 重载操作符 operator overloading 学习笔记

    重载操作符,只是另外一种调用函数的方法和表现方式,在某些情况它可以让代码更简单易读.注意不要过度使用重载操作符,除非它让你的类更简单,让你的代码更易读. 1语法 如下: 其中友元,关键字不是必须的,但 ...

  5. [019]转--C++ operator关键字(重载操作符)

    原博客:http://www.cnblogs.com/speedmancs/archive/2011/06/09/2076873.html operator是C++的关键字,它和运算符一起使用,表示一 ...

  6. VC6.0中重载操作符函数无法访问类的私有成员

    整理日: 2015年03月18日 在 C++ 中,操作符(运算符)可以被重载以改写其实际操作.同时我们可以定义一个函数为类的朋友函数(friend function)以便使得这个函数能够访问类的私有成 ...

  7. C++高精度运算类bign (重载操作符)

    大数据操作,有例如以下问题: 计算:456789135612326542132123+14875231656511323132 456789135612326542132123*14875231656 ...

  8. C++ operator关键字(重载操作符)(转)

    operator是C++的关键字,它和运算符一起使用,表示一个运算符函数,理解时应将operator=整体上视为一个函数名. 这是C++扩展运算符功能的方法,虽然样子古怪,但也可以理解:一方面要使运算 ...

  9. C++中operator关键字(重载操作符)

    operator是C++的关键字,它和运算符一起使用,表示一个运算符函数,理解时应将operator=整体上视为一个函数名. 这是C++扩展运算符功能的方法,虽然样子古怪,但也可以理解:一方面要使运算 ...

  10. C++ Primer 学习笔记_60_重载操作符与转换 --赋值、下标、成员訪问操作符

    重载操作符与转换 --赋值.下标.成员訪问操作符 一.赋值操作符 类赋值操作符接受类类型形參,通常该形參是对类类型的const引用,但也能够是类类型或对类类型的非const引用.假设未定义这个操作符, ...

随机推荐

  1. [Erlang08] 使用Erlang application有什么好处?

    问题: 当我们把一个项目中所有的supervision tree通过一个简单的函数game: start(),会发现这个树结构特别复杂,只能有一个根节点,然后一直扩展. 那么有时,我们会需要:有些功能 ...

  2. ArrayList用法详解与源码分析

    说明 此文章分两部分,1.ArrayList用法.2.源码分析.先用法后分析是为了以后忘了查阅起来方便-- ArrayList 基本用法 1.创建ArrayList对象 //创建默认容量的数组列表(默 ...

  3. CLR via C# 读书笔记-27.计算限制的异步操作(上篇)

    前言 学习这件事情是一个习惯,不能停...另外这篇已经看过两个月过去,但觉得有些事情不总结跟没做没啥区别,遂记下此文 1.CLR线程池基础 2.ThreadPool的简单使用练习 3.执行上下文 4. ...

  4. 高性能无锁队列 Disruptor 初体验

    原文地址: haifeiWu和他朋友们的博客 博客地址:www.hchstudio.cn 欢迎转载,转载请注明作者及出处,谢谢! 最近一直在研究队列的一些问题,今天楼主要分享一个高性能的队列 Disr ...

  5. Template 动画

    如果设置Template的动画,也就意味着对每一个具有此Template的对象进行动画处理. 比如对ListBoxI的ItemTemplate进行设置,添加动画,触发器等,每一个ListBoxItem ...

  6. Linux centos 6.4安装

    Linux系统安装: 开启虚拟机: 界面说明:Install or upgrade an existing system 安装或升级现有的系统install system with basic vid ...

  7. 洛谷P2462 [SDOI2007]游戏(哈希+最长路)

    题面 传送门 题解 我们把字符的出现次数哈希起来,然后把每个点向能在它之后的点连边.那么这显然是一个\(DAG\),直接求最长路就行了 //minamoto #include<bits/stdc ...

  8. mysql扩展库应用---在线词典程序范例

    1,在mysql中创建数据表words. create table words( id int primary key not null auto_increment, enword varchar( ...

  9. freemarker模板跟java代码放在一起

    在配置 freemarkerConfig时加上 <property name="templateLoaderPath" value="classpath:hello ...

  10. C# - Common Tool

    Json 涉及命名空间 using System.IO; using System.Net; using System.Runtime.Serialization.Json; using Newton ...