由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - C++ Q 109: <<, &&
相关主题
member and friendC++里面
A try-catch problem in C++C++ 弱问一个
a simple question for C++ class来几个C++测试题
ask a C++ inheritance questionC++疑问
A C++ Questionc++ 是否也有class method??
关于文件读取的C++ 问题?请教一个作用域的问题
关于C++中一个Class的大小 (转载)c++ 得最基本问题
C++ Strategies and Tactics 书上一个问题求助问个简单的memory allocation 的问题。
相关话题的讨论汇总
话题: c++话题: does话题: cout话题: interpret话题: 109
进入Programming版参与讨论
1 (共1页)
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
2
Yes, 8
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 的大作中提到】
: 奥古大牛,哪里找优先级?谢过了。
1 (共1页)
进入Programming版参与讨论
相关主题
问个简单的memory allocation 的问题。A C++ Question
[合集] 关于C++ default copy constructor关于文件读取的C++ 问题?
C++小程序查错关于C++中一个Class的大小 (转载)
[合集] C++问题(copy constructor)C++ Strategies and Tactics 书上一个问题求助
member and friendC++里面
A try-catch problem in C++C++ 弱问一个
a simple question for C++ class来几个C++测试题
ask a C++ inheritance questionC++疑问
相关话题的讨论汇总
话题: c++话题: does话题: cout话题: interpret话题: 109