c++ 中 如何把 结构体 / 类 当作 if/for/while 的判断条件

  • Post author:
  • Post category:其他

#include<iostream>
using namespace std;
struct Test{
	int x;
}; 
int main(int argc, char* argv[])
{
	struct Test t = {3};
	if(t);
	return 0;
}

当我们这样写的时候,编译器是编译不过的,因为无法判断if(t),

编译器会报类似这样的错

在这里插入图片描述

意思是无法从Test 类型转换成bool 型

所以我们只要重载类型转换运算符就可以了

#include<iostream>
using namespace std;
struct Test{
	int x;
	operator bool(){
		return x> 5 ? true:false;
	}
}; 
int main(int argc, char* argv[])
{
	struct Test t = {3};
	if(t);
	//if(t.x >5);
	return 0;
}

这样做的好处是 可以在重载的运算符中添加复杂的逻辑,而不用每次if判断时都写一遍判断的逻辑


版权声明:本文为qq_38777624原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。