我正在尝试使用两个具有相同名称的方法创建一个类,用于访问私有成员。一种方法是公共的和 const 限定的,另一种是私有的和非 const 的(由朋友类使用,以通过引用返回的方式修改成员)。
不幸的是,我收到编译错误(使用 g++ 4.3):当使用非常量对象调用该方法时,g++ 抱怨我的方法的非常量版本是私有的,即使存在公共(常量)版本。
这看起来很奇怪,因为如果私有非常量版本不存在,一切都编译得很好。
有什么办法可以使这项工作?它可以在其他编译器上编译吗?
谢谢。
例子:
class A
{
public:
A( int a = 0 ) : a_(a) {}
public:
int a() const { return a_; }
private:
int & a() { return a_; } /* Comment this out, everything works fine */
friend class B;
private:
int a_;
};
int main()
{
A a1;
A const a2;
cout << a1.a() << endl; /* not fine: tries to use the non-const (private) version of a() and fails */
cout << a2.a() << endl; /* fine: uses the const version of a() */
}