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"指针初始化类成员
基础教程推荐
- C++:获取传递给函数的多维数组的行大小 2021-01-01
- 将不可复制的闭包对象传递给 std::function 参数 2021-01-01
- 为什么我们不能使用“虚拟继承"?在 COM 中? 2022-01-01
- 如何更改 SysDateTimePick32 或 CDateTimeCtrl 的背景颜色? 2022-01-01
- 如何部分禁用 cmake C/C++ 自定义编译器检查 2021-01-01
- 随机插入/删除的综合向量与链表基准 2022-01-01
- 提升 ASIO 流缓冲 2021-01-01
- 与 CAS 的原子交换(使用 gcc 同步内置函数) 2022-01-01
- 如何在 C++ 中正确使用命名空间? 2022-01-01
- c++ STL设置差异 2022-01-01
