运算符重载---重写运算符逻辑和友元

文章通过一个C++类`Test`展示了如何重载运算符`+`和`<<`,以及使用友元函数来访问私有成员。`operator+`作为成员函数增加类实例的`a`值,`operator<<`用于输出类的`a`值。此外,讨论了不应重载的运算符并提供了使用`std::move`进行右值引用的例子。
摘要由CSDN通过智能技术生成
  • c++运算符本身就是函数,视作中缀函数,就是lef + rig,体会一下就行,那么运算符函数含义是

  • (- return type) (- name_of_operator) (- what type left,- what type right)

  • 使用就是(what type left operator?? what type right)

  • 或者官方说法是:

data1 + data2; // 普通的表达式
operator+(data1, data2); // 上面等价于调用,此时隐含一个东西是函数返回值, 但是我不知道

data1 += data2; // 基于调用+=函数的表达式
data1.operator+=(data2); // 等价于成员函数调用 
  • ! 你不应该做:逗号,取地址符,与和或运算符的重载

#include <iostream>
using namespace std;
class Test
{
private:
    int a;
public:
    // desc: I don't want to convert any basic type to Test implicitly 
    explicit Test(){} // not support implicit convert like `Test(1:int)`
    // desc: this function don't belong to the Test class
    friend ostream& operator<<(ostream& out, const Test test);
    // desc: this is a  function for add a int num by op+
    int operator+(int);
    // desc: to set this->a
    void  set_a(int);
};

ostream& operator<<(ostream& out, const Test test)
{
    out << test.a << std::endl;
    return out;
}
int  Test::operator+(int  a)
{
    return this->a + a;
}
void  Test::set_a(int a)
{
    this->a = std::move(a);// std::move作用主要可以将一个左值转换成右值引用,从而可以调用C++11右值引用的拷贝构造函数
    // cout << a << endl; a is still visitable
}
int  main()
{
    // Test t = 1;
    //  Test t{1}; is like above line
    Test t;
    t.set_a(1);
    int  b = t+1; // t.operator+(1:int)
    cout << t << endl;
    cout << b << endl;
    return 0;
}

  • 友元是声明式的,声明别人为我的朋友,单向性,该朋友能访问我的私有成员(含数据和函数成员)

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值