C++有一个常被用来代替if else语句的运算符,这个运算符被称为条件运算符(?:),它是C++中唯一一个需要3个操作数的运算符。
该运算符的通用格式如下:
cpp
expression1 ? expression2 : expression3
如果expression1为true,则整个条件表达式的值为expression2的值;否则,整个表达式的值为expression3的值。
程序清单6.9使用条件运算符来确定两个值中较大的一个。
cpp
//6.9
#if 1
#include<iostream>
using namespace std;
int main()
{
int a, b;
cout << "Enter two integers: ";
cin >> a >> b;
cout << "The large of " << a << " and " << b;
int c = a > b ? a : b;
cout << " is " << c << endl;
system("pause");
return 0;
}
#endif
从可读性来说,条件运算符最适合于简单关系和简单表达式的值,当代码变得复杂时,使用if else语句来表达可能更为清晰。