1

我有以下代码在全局函数中打印派生结构变量。但是当我尝试编译代码时,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;
}
4

1 回答 1

4
void print(B ib)

D1 d1;
print(d1);

B您的对象在print功能中被截断。您应该使用referenceorpointer代替值。

cout << static_cast<D1>(ib).s1<<endl;

使用static_cast<D1&>(ib).s1. 在这两种情况下ib都应该参考!

于 2012-09-14T11:11:51.043 回答