6
在下面一行不完全類型錯誤enable_shared_from_this
class Symbol : public boost::enable_shared_from_this<Symbol> {
我得到的錯誤:
錯誤:無效的使用不完全類型的struct boost::enable_shared_from_this<Symbol>
/usr/include目錄/升壓/ smart_ptr/shared_ptr.hpp:63:error:聲明struct boost::enable_shared_from_this<Symbol>
任何想法爲什麼我得到這個錯誤。符號是一個抽象類(如果有的話)
我想一個shared_ptr傳給'this'受到充分的boost :: shared_ptr的功能。我從http://stackoverflow.com/questions/712279/what-is-the-usefulness-of-enable-shared-from-這個想法 –
@JerryCoffin:呃,它*特別*設計爲基類。 –
@CatPlusPlus:糟糕 - 非常正確。我想我應該在我跳入之前看過... –