分享一下我老師大神的人工智能教程!零基礎,通俗易懂!http://blog.csdn.net/jiangjunshow
也歡迎大家轉載本篇文章。分享知識,造福人民,實作我們中華民族偉大複興!
想把派生類做成單例,
public: static 我的類* getInstance() {
if( _uniqueInstance == 0 ) {
_uniqueInstance = new 我的類(); //這裡報錯
}
return _uniqueInstance;
}
報錯為:object of abstract class type "我的類" is not allowed
原來是父類裡的虛函數子類沒有實作造成的。
汗!~~