我有以下代码在全局函数中打印派生的结构变量。但是,当我尝试编译代码时,g++返回以下错误。是否无法将结构类型转换为通过按值传递给函数的基类的派生类?

In function 'void print(B)':
Line 19: error: no matching function for call to 'D1::D1(B&)'

码:
struct B{
    int a;
    B()
    {
        a = 0;
    }
};

struct D1:public B{
    std::string s1;
    D1()
    {
        s1.assign("test");
    }
};

void print(B ib)
{
    cout << static_cast<D1>(ib).s1<<endl;
}

int main()
{
    D1 d1;
    cout << d1.s1 <<endl;
    print(d1);
    return 0;
}

最佳答案

void print(B ib)

D1 d1;
print(d1);

您的对象在B函数中被截断为print。您应该使用referencepointer代替value。
cout << static_cast<D1>(ib).s1<<endl;

使用static_cast<D1&>(ib).s1。在这两种情况下,ib都应该被引用!

08-26 19:17
查看更多