分享一下我老师大神的人工智能教程!零基础,通俗易懂!http://blog.csdn.net/jiangjunshow
也欢迎大家转载本篇文章。分享知识,造福人民,实现我们中华民族伟大复兴!
想把派生类做成单例,
public: static 我的类* getInstance() {
if( _uniqueInstance == 0 ) {
_uniqueInstance = new 我的类(); //这里报错
}
return _uniqueInstance;
}
报错为:object of abstract class type "我的类" is not allowed
原来是父类里的虚函数子类没有实现造成的。
汗!~~