c++中的引用到底是怎麼回事。

來源:互聯網
上載者:User
    int a = 0x1234;
0107352E mov dword ptr [a],1234h

int &ra = a;
01073535 lea eax,[a]
01073538 mov dword ptr [ra],eax

ra = 0x9999;
0107353B mov eax,dword ptr [ra]
0107353E mov dword ptr [eax],9999h

上面是c++引用的反組譯碼,從上面可以看出,

引用其實就是將變數的地址存下來,使用的時候把地址指向的值取出來進行操作。

再解釋下下面這種重載

int a[3] = {1,2,3};

class B{
public:
int& operator[](int i)
{
return a[i];
}
};

為什麼這裡必須返回int&, 如果不返回引用,那麼只能取值,而不能賦值。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.