C++用花括号初始化和用括号初始化有什么区别?

比如下面这个问题longdoubleld=3.1415926536;inta{ld},b={ld};//错误,转换未执行,因为存在丢失信息的危险intc(ld),d=(l... 比如下面这个问题

long double ld=3.1415926536;
int a{ld},b={ld}; //错误,转换未执行,因为存在丢失信息的危险
int c(ld),d=(ld); //正确,转化执行,且确实丢失了部分值

为什么会提示 “a”本地函数定义是非法的,而c,d却又没问题呢?这跟a用花括号定义有什么联系?
展开
 我来答
john_lee1969
2014-06-30 · TA获得超过1700个赞
知道小有建树答主
回答量:419
采纳率:100%
帮助的人:526万
展开全部
()是调用了类型的构造函数初始化,对于内置类型来说,编译器有默认的构造函数,类似这样:
struct int {
int (const int&);
int (const double&);
...
four bytes data;
};
题主的变量c的初始化,就是调用了其中的一个构造函数(double),所以不会出现警告。

而 {}初始化的方法,仅被最新的C++11标准支持,有个专门的术语:initializer-list,题主可以去查查资料。
这种方法没有使用构造函数,所以凡是能导致精度降低、范围变窄等等的初始化情况,统称为 narrowing conversion,编译器都会警告,narrowing conversion 具体的情况有:
A narrowing conversion is an implicit conversion
— from a floating-point type to an integer type, or
— from long double to double or float, or from double to float, except where the source is a constant expression and the actual value after conversion is within the range of values that can be represented (even if it cannot be represented exactly), or
— from an integer type or unscoped enumeration type to a floating-point type, except where the source is a constant expression and the actual value after conversion will fit into the target type and will produce the original value when converted back to the original type, or
— from an integer type or unscoped enumeration type to an integer type that cannot represent all the values of the original type, except where the source is a constant expression and the actual value after conversion will fit into the target type and will produce the original value when converted back to the original type.
veket的小号
2014-06-30 · TA获得超过3371个赞
知道大有可为答主
回答量:3762
采纳率:0%
帮助的人:3979万
展开全部
{ } 用于 函数体、复合语句、结构体和数组的初始化
( ) 用于 函数头、函数调用、 各种选择 分支 循环 的条件 、c++变量初始化
懂了吧
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
chenfenggang99
2014-06-30 · TA获得超过1850个赞
知道大有可为答主
回答量:1746
采纳率:75%
帮助的人:1740万
展开全部
在c++中 int 相当于类 。 c(ld) 调用了 数据类型构造函数的 所以是 用()

而{} 表示语言块。 一个{} 表示这些是一块的。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
罪恶欲都
2014-06-30 · 超过47用户采纳过TA的回答
知道答主
回答量:177
采纳率:0%
帮助的人:113万
展开全部
C++还能用花括号初始化?没见过。
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
giant_mantis
2020-06-18
知道答主
回答量:2
采纳率:0%
帮助的人:1137
展开全部
int a{ 0 }; 这样初始化是可以的呀,可能是c++11的新特性
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(4)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式