Type Encodings
為了協助(assist)runtime system,編譯器(compiler)會把每種方法的返回值(the return)和參數類型(argument types)編碼為字符串。這個編碼方案也可以用于其他上下文(context),所以可以公開地(publicly)使用@encode()編譯器指令。返回值和參數類型可以是int,pinter,structure,union等基礎數據類型,也可以是類名。
下表列出了the type codes.
| code | Meaning |
| : | : |
| c | A char |
| i | A int |
| s | A shot |
| ... | ... |
| ... | ... |