神奇的逗号运算符
cout<<(a,c),此时只会输出c的内容,但是a中的内容也会被计算,例如a=5,b=6,c=7 cout<<((d=a+b),c) 输出为7,d=11
All articles in this blog are licensed under CC BY-NC-SA 4.0 unless stating additionally.
Comment
cout<<(a,c),此时只会输出c的内容,但是a中的内容也会被计算,例如a=5,b=6,c=7 cout<<((d=a+b),c) 输出为7,d=11