腾讯云
开发者社区
文档
建议反馈
控制台
登录/注册
首页
学习
活动
专区
工具
TVP
最新优惠活动
文章/答案/技术大牛
搜索
搜索
关闭
发布
精选内容/技术社群/优惠产品,
尽在小程序
立即前往
文章
问答
(9999+)
视频
沙龙
3
回答
如何将
Class
<
Derived
>转换为
Class
<Base>?
、
、
我有一个具有多个派生类的基类:然后我有一个worker类,它将这个类作为泛型类型我想这样做:{ {
浏览 6
提问于2015-11-19
得票数 1
回答已采纳
1
回答
对'vtable of
derived
_
class
‘的引用未定义
、
、
、
下面是我的代码: protected: int myCap;};
class
浏览 1
提问于2015-04-04
得票数 0
3
回答
如何处理相互依赖且有模板成员的类?
、
、
我有两个类,它们都是模板化的,例如:{ template<
class
T > void operator=(T other) } { //do stuff; }
class
Derived</e
浏览 0
提问于2012-09-28
得票数 1
回答已采纳
1
回答
如何在保留默认迁移和分配的同时构造公共数据?
、
、
class
base1{ ~base1() {}public:};
class
到目前为止,我得到的是:
class
base1{ ~base1() { } }
浏览 1
提问于2015-10-09
得票数 0
回答已采纳
3
回答
将派生模板类作为基类指针返回
class
Base { template<typename T> return new
Derived
<T>();};
class
Derived
: public Base {
Derived
() {}该代码会生成一个编译错误
浏览 27
提问于2019-08-11
得票数 0
回答已采纳
1
回答
调用函数重新实例化类
import pandas as pd myplot = None def _constructor如果我将plot()调用移到类之外,它还会多次重新实例化该类 import pandas as pd myplot =
浏览 19
提问于2019-08-28
得票数 0
5
回答
C++如何调用相同的方法,首先从基类调用,然后从派生调用?
这段代码可以帮助理解我想要的:{ void foo() print("Base\n"); }{ void foo() }
浏览 5
提问于2014-07-31
得票数 0
回答已采纳
1
回答
如何用C++实现虚拟静态行为?
如何在需要每个集合具有相同签名的多组静态方法之间切换?自然的方式似乎实现了一个公共接口,但是在virtual static中没有C++方法。
浏览 0
提问于2016-12-06
得票数 3
回答已采纳
2
回答
从C++中同一命名空间中的类继承的问题
、
、
、
每个类都有自己的一对.hpp和.cpp文件;我认为它应该如下所示: }; }; 然而,g++ (也许是链接器)一直告诉我:它不承认Base我想,因为这些类的.hpps包含在其他文件中,所以我在
Derived
.hpp中将它添加
浏览 3
提问于2010-02-11
得票数 2
回答已采纳
1
回答
确保每个派生类(包括直接派生类的派生类)实现一个方法的模式是什么?
、
我有一个基类和几代后代(派生类): public:}
class
Derived
: publicBase{}
class
Derived
2 : public
Derived
{ //Howto force this <
浏览 5
提问于2022-03-15
得票数 0
回答已采纳
4
回答
从基指针向下转换为模板化的派生类型
、
、
、
、
我有以下层次结构:{ virtual ~base(){}};
class
derived
1 : public base virtual void foo() {};
class
derived
2 :问题是
derived
1和
derived
2都可以
浏览 0
提问于2012-03-05
得票数 7
1
回答
C++模板,它根据模板参数整数返回不同的派生类。
、
例如,
class
Accelerometer : public Base<T, 4> { ...template<typename T>有很多这样的课程。他们都很不一样。所以,比方说,我可以说Other<T, 5> other5(
Derived<
浏览 0
提问于2018-02-24
得票数 0
回答已采纳
1
回答
将一个派生类声明为朋友以访问基类的私有成员
、
、
、
Derived
1 : public Base {
class
Derived
2 : public Base { 我想要的是让一个
Derived
1构造函数接受一个
Derived
2对象作为参数,然后访问基类中的受保护成员'a‘。我在基类中添加了下面这行代码:因此它看起来如下所示
浏览 0
提问于2018-03-15
得票数 0
2
回答
由彼此组成的类
、
、
、
请考虑下面的代码示例:{ Base() {} {
Derived
1() : Base() {}{
Derived
2() : Base() {} 有什么东西可以让
Derived
1拥有--
Derive
浏览 3
提问于2014-02-22
得票数 0
回答已采纳
3
回答
c++的动态多态性与功能重载
、
:-)
class
Derived
1
Class
: BaseClass { .. }
class
Derived
3
Class
:
Derived
2
Class
{ .. }
浏览 4
提问于2015-08-19
得票数 1
回答已采纳
1
回答
如何访问派生1和派生2而不是基类中的结果?
、
、
class
Baseclass public void fun() Console.Write("Base
class
" + " ");}{ { }} <e
浏览 2
提问于2016-12-05
得票数 0
回答已采纳
2
回答
C++是否有可能基类有一个带有派生类参数的函数?
、
、
、
、
我想主要做以下几点: void dosomestuff(
Derived
instanceOfDerived) //Something} //SomethingBase需要一个派生的包含,但是要声明派生,它需要首先声明Base。
浏览 7
提问于2015-04-13
得票数 0
回答已采纳
7
回答
即使在派生类中,基类方法也能返回这个值吗?
、
类似这样,只是Method()的返回类型应该是派生类的类型,而不是基类型: public Base Method() { returnthis; } public static int Main() { <e
浏览 8
提问于2011-10-17
得票数 9
回答已采纳
1
回答
如何保存指向类的每个对象的指针
、
、
所以我决定用:我的班级:使用命名空间std; private: string name;
Class
(string name); static set<
Class
&g
浏览 2
提问于2014-03-07
得票数 0
回答已采纳
1
回答
CRTP中间类也需要被设为final
、
、
template <
class
W>{};struct
Derived
_inheritable: public Base<W>....struct
Derived
2_inheritable: public
Derived
_inheritable<W>.... }我想要做的是能够在CRT
浏览 1
提问于2012-04-17
得票数 0
点击加载更多
扫码
添加站长 进交流群
领取专属
10元无门槛券
手把手带您无忧上云
相关
资讯
Class文件加载过程
Python入门-类class
a Class constant pool 分析
9.Class BeginPython笔记
ES6 Class类
热门
标签
更多标签
云服务器
ICP备案
对象存储
腾讯会议
实时音视频
活动推荐
运营活动
广告
关闭
领券