c**********e 发帖数: 2007 | 1 How does the C++ compiler interpret the following C++ statement?
cout << 8 && 10;
Does it compile? What is its output? |
l*********s 发帖数: 5409 | |
c**********e 发帖数: 2007 | 3 How does the compiler interpret it? It is not
cout << (8 && 10);
【在 l*********s 的大作中提到】 : Yes, 8
|
r****t 发帖数: 10904 | 4 (cout << 8) && 10;
【在 c**********e 的大作中提到】 : How does the compiler interpret it? It is not : cout << (8 && 10);
|
A**u 发帖数: 2458 | 5 << 优先级是 7
&& 优先级是 13
【在 c**********e 的大作中提到】 : How does the compiler interpret it? It is not : cout << (8 && 10);
|
y***d 发帖数: 2330 | 6 ... 回字有几种写法?
【在 c**********e 的大作中提到】 : How does the compiler interpret it? It is not : cout << (8 && 10);
|
c**********e 发帖数: 2007 | 7 奥古大牛,哪里找优先级?谢过了。
【在 A**u 的大作中提到】 : << 优先级是 7 : && 优先级是 13
|
X****r 发帖数: 3557 | 8 Why don't you try to Google "c++ operator precedence"?
【在 c**********e 的大作中提到】 : 奥古大牛,哪里找优先级?谢过了。
|