- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我必须创建从抽象类继承的类的实例。我的代码非常简单。它应该基于抽象类创建对象类的实例。抽象类也是模板类。然后我需要将这个对象放入保存指向该对象的指针的 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 函数开始执行的顺序检查代码中的错误。
shared_ptr
,您应该使用专用函数make_shared
。如果可能,最好不要使用 new
并将内存处理留给为此目的编写的类(例如您正在使用的 shared_ptr
)。child
对象并将其保存为 ITERFACE
。将派生类保存为其基类引用/指针是有效的。storage
类中使用unique_ptr
而不是shared_ptr
。类的名称表示,它存储数据,因此拥有数据。storage
应该将它的数据保存为 unique_ptr
,newChild 也应该是一个 unique_ptr
然后只需将所有权与 交换>存储
shared_ptr
。它们负责所持有的内存,您需要调用专用函数(例如 get
或 swap
)来操作它们所持有的数据。INTERFACE
中,您有 2 个类型为 type2 setX()
的虚拟集方法。人们会期望他们将给定属性设置为的值作为参数。您在那里使用的 = 0
表示该方法未实现,继承类应该实现它。这是正确的,因为正如名称 INTERFACE
所说,它只是一个接口(interface),公开显示继承它的类可以做什么,实际上没有任何功能。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/
有没有一种方法可以使用标准类型构造函数(例如 int、set、dict、list、tuple 等)以用户定义的方式将用户定义类的实例强制转换为其中一种类型?例如 class Example:
我知道这个问题在Stackoverflow中有很多问题,但是即使有很多答案,这些答案也帮不了我什么,也没有找到答案。 在我的WebAPP中,它可以正常工作,但是当我将其转换为API时,它失败了(主题标
这个问题已经有答案了: Why does the ternary operator unexpectedly cast integers? (3 个回答) 已关闭 9 年前。 最近遇到一个Java的陷
我尝试使用 FirebaseApp.configure() 配置 Firebase,但遇到以下崩溃: *** Terminating app due to uncaught exception 'c
我有一个自连接员工实体类,其中包含与其自身相关的 id、name 和 ref 列。我想创建它的新实例并将其保存到数据库。 首先我创建了一个 Employee 类的实例并将其命名为 manager。然后
我有一个用于添加新公寓的表单,在该表单中我有一个下拉列表,用户可以在其中选择负责的人员。 显然,当您从下拉列表中选择并尝试保存公寓时,我的应用程序认为该人已被修改。它给了我下面的错误,指示我应该首先保
从 Visualforce 页面,我需要检索我们组织的 salesforce 实例的 URL,而不是 Visual Force URL。 例如我需要https://cs1.salesforce.com
我遇到了一些可能的问题答案,但这是关于从 Hibernate 3.4.0GA 升级到 Hibernate 4.1.8 的问题。所以这曾经在以前的版本下工作,我已经四处搜索了为什么它在这个新版本中出现了
似乎一遍又一遍地问这个问题,我仍然找不到解决我问题的答案。我在下面有一个域模型。每个新创建或更新的“安全用户”都需要我确保其具有配置文件,如果没有,则创建一个新的配置文件并分配给它。 配置文件的要求相
我很难调试为什么 JPA 不级联我的 @ManyToMany 关系。我发现的所有答案都与缺少级联语句有关。但我确实拥有它们并且仍然得到: Caused by: org.hibernate.Transi
Play 服务 API 表明有一个叫做 Instance ID 的东西 但是,在 Android Studio 中包含以下内容后,我无法导入 InstanceID 类 compile "com.goo
我正在使用 Seam 框架。我有 2 个实体: 请求.java @Entity @Table(name = "SRV_REQUEST") public class Request { private
This question处理构建一个适当的Monad来自单子(monad)的实例,但仅在某些约束下 - 例如Set .诀窍是将其包装成 ContT ,它将约束推迟到包装/展开其值。 现在我想对 Ap
我正在尝试执行此查询: StringBuffer sb = new StringBuffer(); sb.append("select p from PointsEntity p " + "where
我试图了解是否可以更改我的 hibernate 配置并使用单个 MySQL 实例(而不是我当前拥有的多个 MySQL 实例): 我有一个使用 hibernate 的 Java 应用程序,与 2 个模式
我有一个选项卡滑动布局,其中包括四个选项卡,每个选项卡都有自己的布局和 fragment ,在我的主要 Activity 布局中,viewpager 参与更改选项卡。特定 View (选项卡)在应用程
我看到很多帖子声称他们正在运行 MySql 的 RDS 实例,但无法连接到该实例,但我没有运行 RDS。 我使用 EC2 实例来托管我的 WordPress 博客,该博客是使用 Web 平台安装程序安
因为我在我的 ec-2 实例上的 python 虚拟环境中运行应用程序( Airflow ),并且我想在同一个 ec2 实例上的默认 python 环境中运行命令,所以我认为 ssh 到我自己的实例更
这个问题已经有答案了: How to fix the Hibernate "object references an unsaved transient instance - save the tra
例子: run APP1 .. ... run APP1 ... run APP2 如何在 APP2 中对 Vue 说我需要调用 APP1?
我是一名优秀的程序员,十分优秀!