• <ins id="pjuwb"></ins>
    <blockquote id="pjuwb"><pre id="pjuwb"></pre></blockquote>
    <noscript id="pjuwb"></noscript>
          <sup id="pjuwb"><pre id="pjuwb"></pre></sup>
            <dd id="pjuwb"></dd>
            <abbr id="pjuwb"></abbr>
            隨筆-34  評(píng)論-108  文章-0  trackbacks-0
            ??? 在一個(gè)非靜態(tài)的成員里面,this關(guān)鍵字就是一個(gè)指針,指向該函數(shù)的這次調(diào)用所針對(duì)的那個(gè)對(duì)象。
            ??? 在類(lèi)X的非const成員函數(shù)里,this的類(lèi)型就是X*,然而this并不是一個(gè)常規(guī)變量,不能獲取this的地址或者給它賦值。
            ??? 在類(lèi)X的const成員函數(shù)里,this的類(lèi)型就是const X*,以防止對(duì)這個(gè)對(duì)象本身的修改。
            posted on 2007-02-10 11:12 探丫頭 閱讀(2376) 評(píng)論(4)  編輯 收藏 引用 所屬分類(lèi): 編程語(yǔ)言——C++

            評(píng)論:
            # re: this指針 2007-02-10 11:19 | nono
            獲取this指針的地址是可以的;)
            而且在類(lèi)X的非const成員函數(shù)里,this的類(lèi)型應(yīng)該是X* const,所以可以修改this說(shuō)指向的地址的值的內(nèi)容,而不能修改自身;
            在類(lèi)X的const成員函數(shù)里,則是const X * const所以兩邊都不能修改  回復(fù)  更多評(píng)論
              
            # re: this指針 2007-02-10 13:01 | 平凡小草
            C++標(biāo)準(zhǔn)的確就是我文章中這樣說(shuō)的  回復(fù)  更多評(píng)論
              
            # re: this指針 2007-02-10 14:42 | nono
            查了下,還真的有,不過(guò)你用編譯器試試就可以知道了
            In the body of a nonstatic (9.3) member function, the keyword this is a non-lvalue expression whose
            value is the address of the object for which the function is called. The type of this in a member function
            of a class X is X*. If the member function is declared const, the type of this is const X*, if the member
            function is declared volatile, the type of this is volatile X*, and if the member function is
            declared const volatile, the type of this is const volatile X*.

            [測(cè)試代碼]
            #include <iostream>
            using namespace std;
            class Test
            {
            public:
            void print();
            void print_const() const;
            };

            void Test::print()
            {
            cout << this << endl;
            this = 1;
            }

            void Test::print_const() const
            {
            cout << this << endl;
            this = 1;
            };

            int main()
            {
            return 0;
            }

            [編譯錯(cuò)誤]
            main.cpp(13) : error C2440: '=' : cannot convert from 'int' to 'Test *const '
            Conversion from integral type to pointer type requires reinterpret_cast, C-style cast or function-style cast
            main.cpp(19) : error C2440: '=' : cannot convert from 'int' to 'const Test *const '
            Conversion from integral type to pointer type requires reinterpret_cast, C-style cast or function-style cast

            VC6.0,2005都是一樣,G++提示non-lvalue in assignment
            正如C++標(biāo)準(zhǔn)草案中寫(xiě)的,the keyword this is a non-lvalue expression ,它是不能進(jìn)行賦值的  回復(fù)  更多評(píng)論
              
            # re: this指針 2007-02-10 14:47 | 平凡小草
            @nono
            謝謝你的指導(dǎo),的確如你所說(shuō)  回復(fù)  更多評(píng)論
              
            亚洲日本va中文字幕久久| 国产成人精品久久亚洲高清不卡| 国产成人久久精品一区二区三区| 久久久久人妻一区精品| 久久国产精品偷99| 精品久久久久久无码中文字幕| 久久99热狠狠色精品一区| 奇米综合四色77777久久| 伊人久久综合无码成人网| 久久这里都是精品| 麻豆精品久久久久久久99蜜桃 | 伊人久久大香线蕉av不变影院| 国产精品亚洲综合久久| 麻豆av久久av盛宴av| 亚洲va久久久噜噜噜久久| 2021久久精品国产99国产精品| 99re久久精品国产首页2020| 一本色道久久88加勒比—综合| 一本久久久久久久| 亚洲欧美另类日本久久国产真实乱对白 | 久久无码专区国产精品发布| 久久久久久久91精品免费观看 | 中文字幕久久欲求不满| 香港aa三级久久三级| 少妇被又大又粗又爽毛片久久黑人| 一本久道久久综合狠狠躁AV| 久久天天躁狠狠躁夜夜不卡 | 久久丫精品国产亚洲av| 久久最近最新中文字幕大全| 久久夜色撩人精品国产| 久久乐国产综合亚洲精品| 精品久久久中文字幕人妻| 国产午夜福利精品久久2021| 久久黄视频| AAA级久久久精品无码片| 久久精品国产一区二区三区| 一本久道久久综合狠狠爱| 久久国产精品波多野结衣AV| 久久综合综合久久综合| 久久九九久精品国产免费直播| 人妻精品久久久久中文字幕69 |