求助一个关于派生类与基类的问题
出错代码如下:
ml_GRAM_SRGSContent content;
ml_SVG_Node* node = (ml_SVG_Node*)content.getElementNode;
其中,ml_GRAM_SRGSContent是派生类,getElementNode是基类的公有方法,返回值类型是ml_SVG_Node* ,可是编译的时候,报错:
d:\lastcode\inspirium\core\opt\srgs\mlgramsrgscontent.cpp(56) : error C2440: 'type cast' : cannot convert from 'class ml_SVG_Node *(__thiscall ml_GRAM_Content::*)(void)' to 'class ml_SVG_Node *'
为什么呢?谢谢。