我正在学习虚幻引擎中的c ++编码,我得到了这个语法我真的没有:
class USphereComponent* ProxSphere;
我认为这意味着创建一个类,但这个类是一个指针?
但结果只是从现有的类USphereComponent创建一个名为ProxSphere的对象。
有人能解释一下这种语法的实际意义及其用法吗?
答案 0 :(得分:0)
class Someotherclass; that has not been defined yet
class HelloWorld
{
Someotherclass* my_pointer;
};
or alternative:
class HelloWorld
{
class Someotherclass* my_pointer;
};
如果你有一个尚未定义的类的多个指针(或引用),第一个显然是正确的。
第二个更好? (我不知道)如果你只需要做一次,否则做
class HelloWorld
{
class Someotherclass* my_pointer;
class Someotherclass* my_pointer2;
class Someotherclass* my_pointer3;
void func(class Someotherclass* my_pointer, class Someotherclass& my_ref);
};
可能不是最好的。