这是相关的代码:
class Element{ struct ValueStorageBase { }; template <typename Datatype> struct ValueStorage: public ValueStorageBase { Datatype Value; ValueStorage(Datatype InitialValue) { Value = InitialValue; } }; ValueStorageBase* StoredValue;public: template <typename Datatype> Element(Datatype InitialValue) { StoredValue = new ValueStorage<Datatype>(InitialValue); } template <typename Datatype> Datatype Get() { return StoredValue->Value; // Error: "struct Element::ValueStorageBase" has no member named "Value." }};解决方法 将虚拟函数添加到模板中是很好的 – 只是函数本身不能是模板.模板化的类或结构仍然可以很好地具有虚函数.你需要使用dynamic_cast的魔力.
class Element{ struct ValueStorageBase { virtual ~ValueStorageBase() {} }; template <typename Datatype> struct ValueStorage: public ValueStorageBase { Datatype Value; ValueStorage(Datatype InitialValue) { Value = InitialValue; } }; ValueStorageBase* StoredValue;public: template <typename Datatype> Element(Datatype InitialValue) { StoredValue = new ValueStorage<Datatype>(InitialValue); } template <typename Datatype> Datatype Get() { if(ValueStorage<DataType>* ptr = dynamic_cast<ValueStorage<DataType>*>(StoredValue)) { return ptr->Value; else throw std::runtime_error("Incorrect type!"); // Error: "struct Element::ValueStorageBase" has no member named "Value." }};
如果更改Get以返回数据类型*,则可以返回NulL而不是throw.您还没有处理以前的StoredValue值的内存,但我要把它留给您.
总结以上是内存溢出为你收集整理的c – 访问类中的值类似于boost :: any全部内容,希望文章能够帮你解决c – 访问类中的值类似于boost :: any所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)