码迷,mamicode.com
首页 > 编程语言 > 详细

C++运算符优先级 案例1

时间:2017-09-30 10:09:57      阅读:190      评论:0      收藏:0      [点我收藏+]

标签:log   png   blog   logs   test   int   是什么   案例   运算   

问:

              ...

              short nReaderCount=10
              ++pLock->nReaderCount==?

              ...

++和->同为1级优先级,我想很多也有很多新手弄不清楚这个例子先执行   ++    操作,还是先执行的  ->   操作

我自己写个了短程序:

              #include<iostream>
              using namespace std;
             

              class test
              {
              public:
                  short nReaderCount;
              };

              int main()
              {
                  test *test1=new test;
                  test1->nReaderCount=10;
    
                  cout<<    ++test1->nReaderCount    <<endl;
                  cout<<"结果表明:先执行指针操作,再执行自增操作";

              return 0;
              }

 

技术分享

 

追问:如果test是union 那么结果又是什么?

 

C++运算符优先级 案例1

标签:log   png   blog   logs   test   int   是什么   案例   运算   

原文地址:http://www.cnblogs.com/azbane/p/7613569.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!