C++ : operator bool () 和bool operator ==()

 

  1. operator bool () 提供一个本类型到bool的隐式转换,不允许使用参数。
  2. bool operator ==()有以下两种:

         bool operator ==( const bool& other)                --------与bool类型的比较

         bool operator ==( const T& other),T代表类型。--------与本类的比较

1、operator bool ()

#include <iostream>
using namespace std;
class A
{
public:
    A(int a) :_a(a) {}
    operator bool()
    {
        cout << "operator bool" << endl;
	return _a;
    }
 
 private:
	 int _a;
 };
 int main()
 {
    A a(0);
    A b(10);
    if (a)
        cout << "a" << endl;
    if(a == b)
        cout<<"asdasddsa"<<endl; 
    getchar();
    return 0;
 }

运行结果:

operator bool
operator bool
operator bool

由此可见,在判断if(a == b)时,先把a、b分别转换为bool类型再进行判断。

2、operator ==()

#include <iostream>
using namespace std;
class A
{
public:
    A(int a) :_a(a) {}
    operator bool()
    {
        cout << "operator bool" << endl;
	return _a;
    }
    bool operator==(const bool &other)
    {
        cout << "bool operator==(const bool &rhs)" << endl;
        return (bool)_a == other;
    }
    bool operator==(const A &other)
    {
        cout << " bool operator==(const A&other)" << endl;
        return this->_a == other._a;
    } 
private:    
    int _a; 
};
int main()
{    
    A a(0);
    A b(10);
    A c(10);
    if (a == true)
	    cout << "a == true" << endl;
    if (b == c)
	    cout << "b == c" << endl;
    getchar();
    return 0;
}

运行结果:

bool operator==(const bool &rhs)
bool operator==(const A&other)
b == c

 

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包

打赏作者

技术探索者

你的鼓励将是我创作的最大动力

¥1 ¥2 ¥4 ¥6 ¥10 ¥20
扫码支付:¥1
获取中
扫码支付

您的余额不足,请更换扫码支付或充值

打赏作者

实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

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

余额充值