简单,可能很容易回答问题。|| 和 || 有什么区别?和或类似 if 语句的东西。
简单的例子:
#include <iostream>
int main(){
int x = 8;
if(x == 8 or 17){
std::cout << "Hello World!\n";
}
}
和
#include <iostream>
int main(){
int x = 8;
if(x == 8 || 17){
std::cout << "Hello World!\n";
}
}
这些对我来说似乎同样有效。他们都编译并且他们都显示“Hello World!” 我一直用|| 甚至不知道或。他们做同样的事情吗?或者是否存在细微差别,例如使用 \n 或 endl ,其中一个行为略有不同。对不起,如果这是一个非常简单的问题。谢谢你的时间。