Function 関数

method_getArgumentType

Returns by reference a string describing a single parameter type of a method. あるメソッドのある単一のパラメータ型を記述している文字列を参照によって返します。

Declaration 宣言

void method_getArgumentType(Method m, unsigned int index, char *dst, size_t dst_len);

Discussion 解説

The parameter type string is copied to dst. dst is filled as if strncpy(dst, parameter_type, dst_len) were called. If the method contains no parameter with that index, dst is filled as if strncpy(dst, "", dst_len) were called.

See Also 参照

Working with Methods メソッドを扱う