内容简介:http://stackoverflow.com/questions/26788402/why-does-foo-invoke-foo0-instead-of-foo
可执行文件由clang 3.5.0和gcc 4.9.1从代码生成
#include <iostream> struct Foo { Foo() { std::cout << "Foo()" << std::endl; } Foo(int x) { std::cout << "Foo(int = " << x << ")" << std::endl; } Foo(int x, int y) { std::cout << "Foo(int = " << x << ", int = " << y << ")" << std::endl; } }; int main() // Output { // --------------------- auto a = Foo(); // Foo() auto b = Foo(1); // Foo(int = 1) auto c = Foo(2, 3); // Foo(int = 2, int = 3) auto d = Foo{}; // Foo() auto e = Foo{1}; // Foo(int = 1) auto f = Foo{2, 3}; // Foo(int = 2, int = 3) auto g = Foo({}); // Foo(int = 0) <<< Why? auto h = Foo({1}); // Foo(int = 1) auto i = Foo({2, 3}); // Foo(int = 2, int = 3) }
表现为评论.
从 cppreference: cpp/language/list initialization :
06001
The effects of list initialization of an object of type T are:
If T
is an aggregate type, aggregate initialization is performed.
Otherwise, If the braced-init-list is empty and T
is a class type with a default constructor, value-initialization is performed.
06002
我得出结论,Foo({})应该调用默认构造函数.
这个bug在哪里?
默认构造函数仅适用于您使用一对大括号:
auto a = Foo(); // Foo() auto b = Foo{}; // Foo()
Foo({})只会调用具有空列表的构造函数作为参数,copy-list-initialize任何构造函数的参数. [dcl.init] / 16:
If the destination type is a (possibly cv-qualified) class type:
— If
the initialization is direct-initialization […] constructors are considered. The applicable constructors
are enumerated (13.3.1.3), and the best one is chosen through overload
The constructor so selected is called to
initialize the object, with the initializer expression or
expression-list If no constructor applies, orthe overload resolution is ambiguous, the initialization is
ill-formed.
你有一个参数:空的braced-init-list.有一个列表初始化序列将{}转换为int,所以构造函数Foo(int)是通过重载分辨率来选择的.参数初始化为零,因为{}表示一个 value-intialization ,对于标量,这意味着一个 zero-initialization .
在cppreferences文档中也没有错误:对于(7)说明
7) in a functional cast expression or other direct-initialization, with braced-init-list used as the constructor argument
这显然导致与上述引用相同的结果:使用(空)braced-init-list调用构造函数.
http://stackoverflow.com/questions/26788402/why-does-foo-invoke-foo0-instead-of-foo
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持 码农网
猜你喜欢:- Java 多线程启动为什么调用 start() 方法而不是 run() 方法?
- Java 多线程启动为什么调用 start() 方法而不是 run() 方法?
- DRS是啥你都不知道?不是吧,不是吧
- TCP连接为什么只能是“3次握手”,不是2次,也不是4次?
- TCP连接为什么是三次握手,而不是两次握手,也不是四次握手?
- RAC 不是万能的
本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
与机器赛跑
[美]埃里克·布林约尔松(Erik Brynjolfsson)、[美]安德鲁·麦卡菲(Andrew McAfee) / 闾佳 / 2013-1-20 / 6.00
一场数字革命正在加速进行。 一些科幻小说里的场景已经在现实中发生:无人驾驶汽车开上了公路;智能设备能高效地翻译人类语言;人工智能系统在智力竞赛里击败了所有人类选手;工厂雇主开始购买更多的新机器,却不招新工人…… 这些例子都证明,数字技术正在快速地掌握原本只属于人类的技能,并深刻地影响了经济。虽然大多数影响是积极的:数字革新将提高效率、降低商品价格(甚至到免费),以及增加经济总量。 ......一起来看看 《与机器赛跑》 这本书的介绍吧!
HTML 编码/解码
HTML 编码/解码
XML、JSON 在线转换
在线XML、JSON转换工具