gpt4 book ai didi

c++ - 从抽象类继承的类的实例

转载 作者:行者123 更新时间:2023-11-28 04:50:07 26 4
gpt4 key购买 nike

我必须创建从抽象类继承的类的实例。我的代码非常简单。它应该基于抽象类创建对象类的实例。抽象类也是模板类。然后我需要将这个对象放入保存指向该对象的指针的 storage 类中。就这样。这个任务是某种家庭作业。

甚至可以创建基于抽象类的类实例吗?

如果是 - 我做错了什么?如果不是-我怎样才能使它相似?

#include <iostream>
#include <string>
#include <memory>

// using namespace std;

template<typename type1, typename type2, typename type3> class INTERFACE {
protected:
type1 x;
type2 y;
type3 name;

public:
virtual type1 setX() = 0;
virtual type2 setY() = 0;
};

class child : public INTERFACE<int, float, std::string> {
public:
child(std::string z) {
this->name = z;
}

int setX(int x) {
this->x = x;
}

float setY(float y) {
this->y = y;
}
};

class storage {
private:
std::shared_ptr<child> childPTR;

public:
void setPTR(const std::shared_ptr<child> & pointer) {
this->childPTR = pointer;
}
};

int main(){
std::shared_ptr<child> newChild(new child("xxx"));
storage testStorage;
testStorage.setPTR(newChild);

return 0;
}

编译错误:

templates.cpp: In function ‘int main()’:
templates.cpp:44:52: error: invalid new-expression of abstract class type ‘child’
std::shared_ptr<child> newChild(new child("xxx"));
^
templates.cpp:18:7: note: because the following virtual functions are pure within ‘child’:
class child : public INTERFACE<int, float, std::string> {
^
templates.cpp:14:23: note: type1 INTERFACE<type1, type2, type3>::setX() [with type1 = int; type2 = float; type3 = std::__cxx11::basic_string<char>]
virtual type1 setX() = 0;
^
templates.cpp:15:23: note: type2 INTERFACE<type1, type2, type3>::setY() [with type1 = int; type2 = float; type3 = std::__cxx11::basic_string<char>]
virtual type2 setY() = 0;

最佳答案

好的,我将按照它们从 main 函数开始执行的顺序检查代码中的错误。

  1. 要初始化shared_ptr,您应该使用专用函数make_shared。如果可能,最好不要使用 new 并将内存处理留给为此目的编写的类(例如您正在使用的 shared_ptr)。
  2. 根据你的问题,我假设你想创建一个 child 对象并将其保存为 ITERFACE。将派生类保存为其基类引用/指针是有效的。
  3. 最好在storage 类中使用unique_ptr 而不是shared_ptr。类的名称表示,它存储数据,因此拥有数据。
  4. 由于 storage 应该将它的数据保存为 unique_ptr,newChild 也应该是一个 unique_ptr 然后只需将所有权与 交换>存储
  5. 您不能只分配任何智能指针,例如 shared_ptr。它们负责所持有的内存,您需要调用专用函数(例如 getswap)来操作它们所持有的数据。
  6. INTERFACE 中,您有 2 个类型为 type2 setX() 的虚拟集方法。人们会期望他们将给定属性设置为的值作为参数。您在那里使用的 = 0 表示该方法未实现,继承类应该实现它。这是正确的,因为正如名称 INTERFACE 所说,它只是一个接口(interface),公开显示继承它的类可以做什么,实际上没有任何功能。
  7. child 类中的 Set 函数缺少 override 关键字,它告诉编译器这些方法应该覆盖基类中的函数。由于您的基类实现有误,它什么也没告诉您。

我希望我已经解决了所有问题。如果我发现任何其他内容或其他人提到任何内容,我会将其添加到列表中。这是一个已修复所有问题的示例:

#include <iostream>
#include <string>
#include <memory>

template<typename Type1, typename Type2, typename Type3>
class Interface {
protected:
Type1 x;
Type2 y;
Type3 name;

public:
// setters with proper signature now
virtual void setX(Type1) = 0;
virtual void setY(Type2) = 0;
};

class Child: public Interface<int, float, std::string> {
public:
Child(const std::string& z) { name = z; };

void setX(int val) override { x = val; }
void setY(float val) override { y = val; }
};

class Storage {
// private keyword not needed
// you also need to specify template arguments of the interface here
std::unique_ptr<Interface<int, float, std::string>> _interface;
// convention of prefixing private members with _

public:
void setPointer(std::unique_ptr<Interface<int, float, std::string>>&& pointer) {
// transfers ownership of that memory to _interface
_interface = std::move(pointer);
}
};

int main() {
// make_unique creates an instance of child, passing it's arguments
// to child's constructor and saves it inside an interface pointer
std::unique_ptr<Interface<int, float, std::string>> newChild = std::make_unique<Child>("xxx");
Storage testStorage;
// here you must move the ownership to the setPointer function
testStorage.setPointer(std::move(newChild));

return 0;
}

我还对您的代码进行了一些重构,以遵循我喜欢在代码中使用的约定。希望我已经解决了所有问题,如果您有任何其他问题,请随时提问。

P.S.:我现在无法访问 C++ 编译器,所以希望我提供的代码可以顺利编译。

关于c++ - 从抽象类继承的类的实例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/48391552/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com