Object C 函式的定義和呼叫

2022-09-13 19:57:09 字數 349 閱讀 6870

oc的函式名稱定義跟其他語言略有不同,之前一直都比較模糊。今天系統的整理一下。

首先,下圖指示了乙個常見的函式及對應元素:

[myarray insertobject:anobject atindex:0];
再來乙個例項:

-(int)changecolortored:(float)red green:(float)green blue:(float)blue;
函式呼叫:

[mycolor changecolortored:5.0 green:2.0 blue:6.0];
需要注意的是,用冒號隔開的各個引數順序是不能更改的

函式的定義和呼叫

方式1 函式宣告方式 function 關鍵字 命名函式 function fn 方式2 函式表示式 匿名函式 var fn function 方式3 new function var f new function a b console.log a b f 1,2 var fn new funct...

函式的定義和呼叫

方式1 函式宣告方式 function 關鍵字 命名函式 function fn 方式2 函式表示式 匿名函式 var fn function 方式3 new function var f new function a b console.log a b f 1,2 var fn new funct...

python 函式的定義和呼叫

函式 def 函式名 引數1,引數2 文件描述 函式體 return n 定義函式的三種方式 形式一,無引數 def func print hahaha func 定義函式發生的事情 1,申請記憶體空間儲存函式 2,將上述記憶體位址繫結函式名 3.定義函式不會執行函式體 但是會檢測函式的語法 呼叫函...