為什麼在 Objective-C 中給 nil 發送訊息程式不會崩潰?

來源:互聯網
上載者:User

我們知道在 Objective-C 中給 nil 發送訊息程式不會崩潰,

Objective-C 是以 C 語言為基礎的,

PC 上,在 C 語言中對null 指標進行操作,

程式會由于越界訪問而出現保護錯進而崩潰,

但是 Objective-C 中為什麼不會崩潰呢?

原因需要從原始碼中尋找,

下面是 objc_msgSend 的 arm 版彙編程式碼片段:

在 arm 的函數調用過程中,

一般用 r0-r4 傳遞參數,

用 r0 傳遞傳回值。

對應 objc_msgSend,第一個參數為 self,傳回值也是 self,都放在 r0(a1)中。

 

 

/********************************************************************

 * idobjc_msgSend(idself, SELop, ...)

 * On entry: a1 is the message receiver,

 *                  a2 is the selector

 ********************************************************************/

 

ENTRY objc_msgSend

# check whether receiver is nil

teq     a1, #0

moveq   a2, #0

bxeq    lr

 

teq 指令說明:

TEQ RnOperand2 The TEQ instruction performs a bitwise Exclusive OR operation on the value in Rn and the value of Operand2.

測試 self 是否為空白。

moveq 指令說明:

如果self為空白,則將 selector 也設定為空白。

bx 指令說明:

在 arm 中 bx lr 用來返回到調用子程式的地方(即:返回到調用者),此處是:如果 self 為空白,就返回到調用 objc_msgSend 的地方繼續執行。

總之:

如果傳遞給 objc_msgSend 的 self 參數是 nil,該函數不會執行有意義的操作,直接返回。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在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.