5

我遇到了用 C++ 编写的这段代码:

#include<iostream>
using namespace std;

class Base {
public:
    virtual int fun(int i) { cout << "Base::fun(int i) called"; }
};

class Derived: public Base {
private:
    int fun(int x)   { cout << "Derived::fun(int x) called"; }
};

int main()
{
    Base *ptr = new Derived;
    ptr->fun(10);
    return 0;
}

输出:

 Derived::fun(int x) called 

在以下情况下:

#include<iostream>
using namespace std;

class Base {
public:
    virtual int fun(int i) { }
};

class Derived: public Base {
private:
    int fun(int x)   {  }
};
int main()
{
    Derived d;
    d.fun(1);
    return 0;
} 

输出

Compiler Error.

谁能解释为什么会这样?在第一种情况下,通过对象调用私有函数。

4

2 回答 2

4

因为在第一种情况下,您使用的Base是 public 的声明,并且调用是后期绑定到Derived实现的。请注意,在继承中更改访问说明符是危险的,几乎总是可以避免的。

于 2012-09-22T19:46:00.517 回答
3

多态性发生在第一种情况下。它会导致动态或后期绑定。正如第二个答案中提到的,它有时会变得非常危险。

您不能直接从类定义外部访问类的私有接口。如果您想在第二个实例中访问私有函数而不使用友元函数,正如您的问题标题所暗示的那样,请在您的类中创建另一个公共函数。使用该函数调用此私有函数。像这样。

 int call_fun (int i) ;

fun()从里面调用。

int call_fun (int i)
{
  return fun (i) ;  //something of this sort, not too good
}

像这样仅用于调用另一个函数的函数称为wrapper functions.

制作friends也不总是可取的。这违反了信息隐藏的原则。

于 2012-09-22T19:47:16.180 回答