有人可以解释为什么下面的代码不能在错误时编译:
Error 1 error C2243: 'type cast' : conversion from 'Der *' to 'Base *' exists, but is inaccessible d:\users\lzizva\documents\mta\c++\projects\temp1\17022014.cpp 50 1 temp1
Error 2 error C2243: 'type cast' : conversion from 'Der *' to 'Base *' exists, but is inaccessible d:\users\lzizva\documents\mta\c++\projects\temp1\17022014.cpp 51 1 temp1
3 IntelliSense: conversion to inaccessible base class "Base" is not allowed d:\users\lzizva\documents\mta\c++\projects\temp1\17022014.cpp 50 12 temp1
4 IntelliSense: conversion to inaccessible base class "Base" is not allowed d:\users\lzizva\documents\mta\c++\projects\temp1\17022014.cpp 51 14 temp1
我认为,如果存在私有(private)继承,则子级将获取所有属性和方法并将其设置为私有(private),这只会影响子级的子类。
我在这里想念什么?
编译器实际上是做什么的?
提前致谢,
里龙
#include <iostream>
using namespace std;
class Base
{
int n;
Base* next;
public:
Base(int n, Base* next = NULL) : n(n), next(next)
{}
virtual void print() const
{
cout << n << endl;
if (next != NULL)
{
next->print();
}
}
virtual ~Base()
{
cout << "Base" << endl;
}
};
class Der : private Base
{
int counter;
public:
Der(int n, Base* next = NULL) : Base(n, next), counter(n){}
void print() const
{
cout << counter << endl;
Base::print();
}
~Der()
{
cout << "Der" << endl;
}
};
void main()
{
Der one(1);
Der two(2, &one);
Der three(3, &two);
three.print();
}
最佳答案
问题在于two
和three
的构造:Der
构造函数采用Base*
,但是您要传递Der*
指针。
由于Der
是从Base
私下派生的,因此Der
中无法访问Base
-> main()
转换,因此会出错。
关于c++ - C++自动 'type cast'转换,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/21845975/