2.0
3.0
>
dev
>
api
>
name
>
begin_method_void
前一个
下一个
编辑
重命名
撤销
搜索
管理
文档
警告! 该页面未翻译。
参见英文版
BEGIN_METHOD_VOID
#define
BEGIN_METHOD_VOID
(
name
) ...
Begins the implementation of a
方法
that has no arguments.
name
is the name of the function, as specified in the
类
declaration.
Example
BEGIN_METHOD_VOID(CARRAY_pop)
...
END_METHOD
...
PUBLIC GB_DESC NATIVE_StringArray[] =
{
GB_DECLARE("String[]", sizeof(CARRAY)), GB_INHERITS(".Array"),
...
GB_METHOD("Pop", "s", CARRAY_pop, NULL),
...
GB_END_DECLARE
};
参见
方法实现