- iOS/Objective-C 元类和类别
- objective-c - -1001 错误,当 NSURLSession 通过 httpproxy 和/etc/hosts
- java - 使用网络类获取 url 地址
- ios - 推送通知中不播放声音
构造函数 Year() 在这种情况下安全吗?
struct Year {
int year;
Year(int y) : year(y) {}
Year() { *this = Year(1970); } // *this = this->operator=(Year(1970));
};
Year y;
我认为是的,因为一旦执行流到达构造函数主体,year 就已经用 int() 初始化了。还有其他问题需要考虑吗?
不要考虑同样的技巧可能会引起麻烦的其他情况。
最佳答案
当然,this will work , 并且有效。
在你的 ctor-body 运行时,所有的数据成员和基础都已经构建好了,并且:
[n3290: 12.7/4]
Member functions, including virtual functions (10.3), can be called during construction or destruction (12.6.2). [..]
不要混淆:
[n3290: 12.7/1]
For an object with a non-trivial constructor, referring to any non-static member or base class of the object before the constructor begins execution results in undefined behavior.
(注意。“在构造函数开始之前”;此子句不适用于此处。)
12.8“Copying and moving class objects”
中没有任何内容禁止在构造期间赋值。
请注意,这不意味着对象已经开始其“生命周期”:
[n3290: 3.8/1]:
The lifetime of an object of typeT
begins when:
- storage with the proper alignment and size for type
T
is obtained, and- if the object has non-trivial initialization, its initialization is complete.
以及非委托(delegate) ctor 的“初始化”的最后一步:
[n3290: 12.6.2/10]:
[..] Finally, the compound-statement of the constructor body is executed.
总而言之,这意味着对象的“生命周期”直到其最派生的构造函数主体完成执行后才开始。
特别是,在对象开始其生命之前传递一个指向该对象的指针不是很有用,因为通过该指针做的几乎任何事情都会调用未定义的行为:
[n3290: 3.5/8]:
Before the lifetime of an object has started but after the storage which the object will occupy has been allocated or, after the lifetime of an object has ended and before the storage which the object occupied is reused or released, any pointer that refers to the storage location where the object will be or was located may be used but only in limited ways. [..]
但是:
[n3290: 3.8/3]:
[..] [ Note: [..] Also, the behavior of an object under construction and destruction might not be the same as the behavior of an object whose lifetime has started and not ended. 12.6.2 and 12.7 describe the behavior of objects during the construction and destruction phases. —end note ]
而且,正如我们已经探索过的,12.7
友善地通知我们,成员可能在构建的这个阶段被访问。
不过,您的方法很难遵循;在确定它是否有效之前,我还必须查找上面的段落,因此它显然不完全直观。
幸运的是C++0x引入了构造函数委托(delegate),这样你就可以这样写:
struct Year {
Year() : Year(1970) {}
Year(int y) : year(y) {}
int year;
};
(唉,GCC 4.5.1 不支持这个,所以 I cannot demonstrate it to you on ideone.com。事实上,for GCC as a whole there's only a "partial patch" at time of writing。)
关于c++ - 在 T 的构造函数中使用 *this = T() 将 "initialize"类型为 T 的对象安全吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/7086445/
我正在尝试将 keras.initializers 引入我的网络,following this link : import keras from keras.optimizers import RMS
我正在为程序创建某种前端。为了启动程序,我使用了调用 CreateProcess(),其中接收到一个指向 STARTUPINFO 结构的指针。初始化我曾经做过的结构: STARTUPINFO star
我已经模板化了 gray_code 类,该类旨在存储一些无符号整数,其基础位以格雷码顺序存储。这里是: template struct gray_code { static_assert(st
我已经查看了之前所有与此标题类似的问题,但我找不到解决方案。所有错误都表明我没有初始化 ArrayList。我是否没有像 = new ArrayList 这样初始化 ArrayList? ? impo
当涉及到 Swift 类时,我对必需的初始化器和委托(delegate)的初始化器有点混淆。 正如您在下面的示例代码中所见,NewDog 可以通过两种方式中的一种进行初始化。如您所见,您可以通过在初始
几天来我一直在为一段代码苦苦挣扎。我在运行代码时收到的错误消息是: 错误:数组初始值设定项必须是初始值设定项列表 accountStore(int size = 0):accts(大小){} 这里似乎
我想返回一个数组,因为它是否被覆盖并不重要,我的方法是这样的: double * kryds(double linje_1[], double linje_2[]){ double x = linje
尝试在 C++ 中创建一个简单的 vector 时,出现以下错误: Non-aggregates cannot be initialized with initializer list. 我使用的代码
如何在构造函数中(在堆栈上)存储初始化列表所需的临时状态? 例如,实现这个构造函数…… // configabstraction.h #include class ConfigAbstraction
我正在尝试编写一个 native Node 插件,它枚举 Windows 机器上的所有窗口并将它们的标题数组返回给 JS userland。 但是我被这个错误难住了: C:\Program Files
#include using namespace std; struct TDate { int day, month, year; void Readfromkb() {
我很难弄清楚这段代码为何有效。我不应该收到“数组初始值设定项必须是初始值设定项列表”错误吗? #include class B { public: B() { std::cout << "B C
std::map m = { {"Marc G.", 123}, {"Zulija N.", 456}, {"John D.", 369} }; 在 Xcode 中,我将 C+
为了帮助你明白这一点,我给出了我的代码:(main.cpp),只涉及一个文件。 #include #include using namespace std; class test{ public
这在 VS2018 中有效,但在 2008 中无效,我不确定如何修复它。 #include #include int main() { std::map myMap = {
我有一个类: #include class Object { std::shared_ptr object_ptr; public: Object() {} template
我正在为 POD、STL 和复合类型(如数组)开发小型(漂亮)打印机。在这样做的同时,我也在摆弄初始化列表并遇到以下声明 std::vector arr{ { 10, 11, 12 }, { 20,
我正在使用解析实现模型。 这是我的代码。 import Foundation import UIKit import Parse class User { var objectId : String
我正在观看 Java 内存模型视频演示,作者说与 Lazy Initialization 相比,使用 Static Lazy Initialization 更好,我不清楚他说的是什么想说。 我想接触社
如果您查看 Backbone.js 的源代码,您会看到此模式的多种用途: this.initialize.apply(this, arguments); 例如,这里: var Router =
我是一名优秀的程序员,十分优秀!