gpt4 book ai didi

c++ - 如何使用基类的接口(interface)?

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

如果我在基类中定义了一个接口(interface)并通过派生类调用该接口(interface),我发现使用该基类接口(interface)的唯一方法是在派生类中使用“using”。我不确定这是否是一个好习惯。这是一个示例程序

#include <memory>
#include <iostream>

using namespace std;

template <class T>
class B
{
public:
void outB() { cout << "dim from B is " << dim_ << endl ; }
B(int dim) : dim_(dim) {}
~B() {}
protected:
int dim_;
};

template <class T>
class A : B<T>
{
public:
using B<T>::dim_;
using B<T>::outB;
void outA() { cout << "dim from A is " << dim_ << endl ; }
A(int dim) : B<T>(dim) {}
~A() {}
private:
};


int main(int argc, const char *argv[])
{
shared_ptr<A<double> > ap(new A<double>(2));
ap->outA();
ap->outB();
return 0;
}

如果我去掉 using B<T>::outB; 这行该程序无法编译。 http://ideone.com/x6gm0

使用using的问题一直以来,如果我有很长的派生类链(例如,如果我广泛使用适配器模式),我必须写 using ...;在所有继承接口(interface)的每个派生类中。

避免重复 using 的好习惯是什么?在每个派生类中保留基类的接口(interface)?

请注意,我想避免使用 virtual .我需要代码的性能。

最佳答案

为什么不声明 class A: public B<T>在这种情况下你不需要 using ?现在,这对基类中的成员函数 来说是开箱即用的。要访问基类成员变量,您要么需要做您正在做的事情,要么通过显式调用 this 来访问它们。指针即 this->dim_而不仅仅是 dim_

关于c++ - 如何使用基类的接口(interface)?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/9813922/

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