C++17で追加された機能、値のコピー省略を保証について、規格のどこにこの記述があるのか
私の解釈では、この文が該当するというような直接定義は存在しないと思います。
採択された提案文書 P0135R1 Wording for guaranteed copy elision through simplified value categories のタイトルが示す通り、コピー省略保証は「値カテゴリ(value categories)関連の仕様変更」によって実現されます。
大雑把には「prvalue式単体では一時オブジェクトを生成せず」、新たに「一時オブジェクトを実体化(materialize)する条件」を定義することで、結果としてコピー省略保証が実現されます。提案文書 P0135R0 より引用:
We conclude that a prvalue expression of class or array type should not create a temporary object. Instead, the temporary object is created by the context where the expression appears, if it is necessary. The contexts that require a temporary object to be created ("materialized") are as follows:
[...]
外部QAサイトStackOverflowでの質問回答 How does guaranteed copy elision work? もあわせて参考にください。
(NRVOはどのように、保証されないのでしょうか)
従来通りです。C++17 [class.copy.elision]/Paragraph 1より引用(強調部は回答者による):
When certain criteria are met, an implementation is allowed to omit the copy/move construction of a class object, even if the constructor selected for the copy/move operation and/or the destructor for the object have side e ects. In such cases, the implementation treats the source and target of the omitted copy/move operation as simply two di erent ways of referring to the same object. If the first parameter of the selected constructor is an rvalue reference to the object’s type, the destruction of that object occurs when the target would have been destroyed; otherwise, the destruction occurs at the later of the times when the two objects would have been destroyed without the optimization. This elision of copy/move operations, called copy elision, is permitted in the following circumstances (which may be combined to eliminate multiple copies):
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2019/01/13 02:47