一、逻辑OR运算符:||
如果表达式中的任何一个或全部都为true(或非零),则得到的表达式的值为true;否则,表达式的值为false。
||的优先级比关系运算符低。
C++规定,||运算符是个顺序点。即,先修改左侧的值,再对右侧的值进行判定。如果左侧的表达式为true,则C++将不会去判定右侧的表达式,因为只要一个表达式为true,则整个逻辑表达式为true。
程序清单6.4在一条if语句中使用||运算符来检查某个字符的大写或小写。另外,它还使用了C++运算符的拼接特性(参见第4章)将一个字符串分布在3行中。
#if 1
#include<iostream>
using namespace std;int main()
{cout << "This program may reformat your hard disk\n""and destroy all your data.\n""Do you wish to continue?<y/n>";char ch;cin >> ch;if (ch == 'y' || ch == 'Y')cout << "You were warned!\a\a\n";else if (ch == 'n' || ch == 'N')cout << "A wise choice ... bye\n";elsecout << "That wasn't a y or n!Apparently you ""can't follow\ninstructions,so ""I'll trash your disk anyway.\a\a\a\n";system("pause");return 0;
}
#endif