作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
例如我有一个类:
class Foo {
public:
Foo(const Foo& foo) : father(foo) {}
private:
const Foo& father;
};
如果对象是top,如何赋值father
字段?我尝试了 Foo foo(foo);
,但编译器警告我 foo 未初始化,我猜编译器只在所有初始化完成后才将内存分配给 foo 对象,所以如果我这样做, 父亲
将引用一些乱七八糟的内存地址。
那么,在这种情况下,如果对象是top,如何分配father
呢?
最佳答案
使用一个特殊的构造函数(并使用一个标签来区分你的构造函数和 copy constructor ):
struct father_tag {};
class Foo {
public:
Foo(const Foo& foo, father_tag) : father(foo) {}
Foo() : father(*this) {}
private:
const Foo& father;
};
// usage:
Foo father;
Foo next(father, father_tag{});
或者您可以使用指针而不是引用,将其留给链末尾的 nullptr
。然后你可以用 if (father)
检查你是否在最后:
class Foo {
public:
Foo(Foo const* pfather) : m_pfather(pfather) {}
Foo() : m_pfather(nullptr) {}
private:
Foo const* m_pfather;
};
关于c++ - 如何分配引用链的末端?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/55590121/
我正在尝试将 View 的背景设置为具有从 Palette api 生成颜色的渐变 渐变将从纯色逐渐淡出,但我希望纯色部分占据大部分背景。现在它开始稳定,然后在 View 宽度上逐渐淡出,我希望它从
我是一名优秀的程序员,十分优秀!