In C++, initialize a class member with #39;this#39; pointer during construction(在 C++ 中,在构造期间使用“this指针初始化类成员)
问题描述
我想创建一个以某种父子关系关联到另一个类的类.为此,子"类需要对其父类的引用.
I'd like to create a class that is associated to another class in some sort of parent-child relationship. For this the "child" class needs a reference to it's parent.
例如:
template <typename T>
class TEvent {
private: T* Owner;
public: TEvent(T* parent) : Owner(parent) {}
};
class Foo {
private: TEvent<Foo> Froozle; // see below
};
现在的问题是我不能直接初始化 Froozle
实例,也不能使用 Foo 的构造函数的实例化列表,因为那里不允许 this
引用.除了添加另一个方法 setParent(T*)
(我不太喜欢它,因为这意味着我必须让 TEvent<>
实例无效state), 有没有办法做到这一点?
Now the problem is that I can't initialize the Froozle
instance directly, nor using the instanciation list of Foo's constructor, because this
references are not allowed there. Apart from adding another method setParent(T*)
(which I don't like too much because it means that I have to leave the TEvent<>
instance in an invalid state), is there a way to achieve this?
推荐答案
在初始化列表中使用this
是可以的,只要不用来访问任何可能没有的成员尚未初始化.
It is OK to use this
in the initialization list, as long as it is not used to access any members that may not have been initialized yet.
这篇关于在 C++ 中,在构造期间使用“this"指针初始化类成员的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 C++ 中,在构造期间使用“this"指针初始化类成员


基础教程推荐
- 我有静态或动态 boost 库吗? 2021-01-01
- 如何在 C++ 中初始化静态常量成员? 2022-01-01
- 如何检查GTK+3.0中的小部件类型? 2022-11-30
- 如何通过C程序打开命令提示符Cmd 2022-12-09
- 静态库、静态链接动态库和动态链接动态库的 .lib 文件里面是什么? 2021-01-01
- 常量变量在标题中不起作用 2021-01-01
- C++结构和函数声明。为什么它不能编译? 2022-11-07
- 如何将 std::pair 的排序 std::list 转换为 std::map 2022-01-01
- 这个宏可以转换成函数吗? 2022-01-01
- 在 C++ 中计算滚动/移动平均值 2021-01-01