分享
 
 
 

#1 Variable Initialization(变量初始化)

王朝other·作者佚名  2006-01-09
窄屏简体版  字體: |||超大  

How many ways are there to initialize variables? Don't forget to watch out for bugs that look like variable initialization, but aren't.

Problem

What is the difference, if any, between the following?

SomeType t = u;

SomeType t(u);

SomeType t();

SomeType t;

Solution

Taking them in reverse order:

SomeType t;

The variable t is initialised using the default ctor SomeType::SomeType().

SomeType t();

This was a trick; it might look like a variable declaration, but it's a function declaration for a function t that takes no parameters and returns a SomeType.

SomeType t(u);

This is direct initialisation. The variable t is initialised using SomeType::SomeType(u).

SomeType t = u;

This is copy initialisation, and the variable t is always initialised using SomeType's copy ctor. (Even though there's an "=" there, that's just a syntax holdover from C... this is always initialisation, never assignment, and so operator= is never called.)

Semantics: If u also has type SomeType, this is the same as "SomeType t(u)" and just calls SomeType's copy ctor. If u is of some other type, then this is the same as "SomeType t( SomeType(u) )"... that is, u is converted to a temporary SomeType object, and t is copy-constructed from that.

Note: The compiler is actually allowed (but not required) to optimize away the copy construction in this kind of situation. If it does optimize it, the copy ctor must still be accessible.

[Guideline] Prefer using the form "SomeType t(u)". It always works wherever "SomeType t = u" works, and has other advantages (for instance, it can take multiple parameters).

中文:

到底有多少种方法初始化变量呢?请小心提防那些看起来好像是初始化变量,但是实际上却不是的问题。

问题:

下面的代码的写法有什么不同吗?如果不同,那么不同点是什么呢?

SomeType t = u;

SomeType t(u);

SomeType t();

SomeType t;

答案:

OK,下面我从最后一个说起吧:

SomeType t;

变量 t 使用默认的构造函数SomeType::SomeType()来初始化。

SomeType t();

小心,不要上当哦,它看起来像是一个变量 t 的声明,但是,实际上,它是函数 t() 的声明。

SomeType t(u);

这个是用 u 来初始化变量 t ,调用的函数是SomeType::SomeType(u)。

SomeType t = u;

嘿,你可不要以为这是个赋值哦,它实际上调用的是SomeType拷贝构造,用 u 来构造变量 t 。就算你在你的类里定义了operator=它也永远不会调用它的。如果你没有定义拷贝构造函数的话,程序编译就会失败的。

语义:假如 u 是SomeType类型的变量,那么"SomeType t(u)" 的调用实际上就是调用了SomeType的拷贝构造;否则,调用的就是"SomeType t( SomeType(u) )",在这里 u 先被转换成一个临时的SomeType对象,然后再通过它来拷贝构造 t 。

注意:实际上在这种情况下,编译器是会对拷贝构造进行优化的。如果编译器进行了优化,那么拷贝构造函数必须是可以被访问的,否则就会编译不通过了。

准则:最好是使用"SomeType t(u)"这种方式来构造一个变量,因为,它在"SomeType t = u"可以工作的时候都可以工作,同时它还有其他的一些优点,比如它可以接收多个参数等等。

 
 
 
免责声明:本文为网络用户发布,其观点仅代表作者个人观点,与本站无关,本站仅提供信息存储服务。文中陈述内容未经本站证实,其真实性、完整性、及时性本站不作任何保证或承诺,请读者仅作参考,并请自行核实相关内容。
2023年上半年GDP全球前十五强
 百态   2023-10-24
美众议院议长启动对拜登的弹劾调查
 百态   2023-09-13
上海、济南、武汉等多地出现不明坠落物
 探索   2023-09-06
印度或要将国名改为“巴拉特”
 百态   2023-09-06
男子为女友送行,买票不登机被捕
 百态   2023-08-20
手机地震预警功能怎么开?
 干货   2023-08-06
女子4年卖2套房花700多万做美容:不但没变美脸,面部还出现变形
 百态   2023-08-04
住户一楼被水淹 还冲来8头猪
 百态   2023-07-31
女子体内爬出大量瓜子状活虫
 百态   2023-07-25
地球连续35年收到神秘规律性信号,网友:不要回答!
 探索   2023-07-21
全球镓价格本周大涨27%
 探索   2023-07-09
钱都流向了那些不缺钱的人,苦都留给了能吃苦的人
 探索   2023-07-02
倩女手游刀客魅者强控制(强混乱强眩晕强睡眠)和对应控制抗性的关系
 百态   2020-08-20
美国5月9日最新疫情:美国确诊人数突破131万
 百态   2020-05-09
荷兰政府宣布将集体辞职
 干货   2020-04-30
倩女幽魂手游师徒任务情义春秋猜成语答案逍遥观:鹏程万里
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案神机营:射石饮羽
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案昆仑山:拔刀相助
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案天工阁:鬼斧神工
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案丝路古道:单枪匹马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:与虎谋皮
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:李代桃僵
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案镇郊荒野:指鹿为马
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:小鸟依人
 干货   2019-11-12
倩女幽魂手游师徒任务情义春秋猜成语答案金陵:千金买邻
 干货   2019-11-12
 
推荐阅读
 
 
 
>>返回首頁<<
 
靜靜地坐在廢墟上,四周的荒凉一望無際,忽然覺得,淒涼也很美
© 2005- 王朝網路 版權所有