TyEndof实际上不创建变量,它只是生成一个可以用来创建变量的名称。该代码创建了一个指向FieldIyType单元的变量的指针,但是在该代码中的任何地方都没有字段FieldUngy变量的定义,因此指针仍然是空的。
以上来自于百度翻译
以下为原文
A typedef doesn't actually create a variable, it just makes a name you can then use to create variables.
That code creates a pointer to a variable of type FIELD_UNIT, but there is no definition of a FIELD_UNIT variable anywhere in that code, so the pointer will still be NULL.
TyEndof实际上不创建变量,它只是生成一个可以用来创建变量的名称。该代码创建了一个指向FieldIyType单元的变量的指针,但是在该代码中的任何地方都没有字段FieldUngy变量的定义,因此指针仍然是空的。
以上来自于百度翻译
以下为原文
A typedef doesn't actually create a variable, it just makes a name you can then use to create variables.
That code creates a pointer to a variable of type FIELD_UNIT, but there is no definition of a FIELD_UNIT variable anywhere in that code, so the pointer will still be NULL.
举报