gpt4 book ai didi

c++ - 我可以将基类的个别成员的状态更改为私有(private)吗?

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:21:52 25 4
gpt4 key购买 nike

我正在使用 wxWidgets,如果您曾经使用过它,您就会知道基类中有很多 公共(public)函数。我最近遇到了一种情况,我不希望直接从派生类调用方法 SetText()。也就是说,派生类继承了 SetText() 函数,但我不希望客户端可以使用此函数。相反,我提供了两个调用 SetText() 的新函数,但在执行一些额外操作之前不会调用。

目前,客户端(我!)可以忘记调用特殊函数而只需调用 SetText()。因此,将不会执行一些额外的操作。这些操作非常微妙,很容易被忽视。

那么,我能否将个别函数标记为私有(private)函数,以便客户端无法调用它们,或者只是让客户端无法直接调用它(他们将不得不使用我的函数来间接调用它)?

请注意 SetText() 不是虚拟的。

编辑:对于偶然发现这个问题的 future 程序员,请检查标记的答案和 Doug T.'s回答。

最佳答案

实际上有两种方法可以做到这一点。 Doug T. 很好地概述了第一个 - 使用私有(private)/ protected 继承和组合 - 所以我不会深入讨论那个。

使用私有(private)/ protected 继承的问题是它掩盖了一切。然后,您必须有选择地公开您仍想公开的成员。如果您希望大部分内容都保持公开状态,并且只想掩盖一件事情,那么这可能会让人头疼。这就产生了对第二种方法的需求 - 使用 using 关键字。

例如,在您的情况下,您可以简单地声明您的类如下:

class Child : public Parent
{
//...
private:
using Parent::SetText; // overrides the access!
};

屏蔽了 SetText 方法!

请记住,指向 Child 的指针始终可以转换为指向 Parent 的指针,并且可以再次访问该方法 - 但这是一个问题继承也是:

class Parent
{
public:
void SomeMethod() { }
void AnotherMethod() { }
};

class ChildUsing : public Parent
{
private:
using Parent::SomeMethod;
};

class ChildPrivateInheritance : private Parent
{
};

void main()
{
Parent *p = new Parent();
ChildUsing *a = new ChildUsing();
ChildPrivateInheritance *b = new ChildPrivateInheritance();
p->SomeMethod(); // Works just fine
a->SomeMethod(); // !! Won't compile !!
a->AnotherMethod(); // Works just fine
((Parent*)a)->SomeMethod(); // Compiles without a problem
b->SomeMethod(); // !! Won't compile !!
b->AnotherMethod(); // !! Won't compile !!
((Parent*)b)->SomeMethod(); // Again, compiles fine

delete p; delete a; delete b;
}

尝试访问 ChildUsing 实例上的 SomeMethod 会产生(在 VS2005 中):

error C2248: 'ChildUsing::SomeMethod' : cannot access private member declared in class 'ChildUsing'

但是,尝试在 ChildPrivateInheritance 实例上访问 SomeMethod AnotherMethod 会产生:

error C2247: 'Parent::SomeMethod' not accessible because 'ChildPrivateInheritance' uses 'private' to inherit from 'Parent'

关于c++ - 我可以将基类的个别成员的状态更改为私有(private)吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7182290/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com