gpt4 book ai didi

c++ - ((int) 和 (int(a)) 之间有什么区别?

转载 作者:行者123 更新时间:2023-12-01 12:41:11 25 4
gpt4 key购买 nike

((int) a) 和有什么区别和 (int(a)) ?

第二个表达式在纯“С”中有效吗?

最佳答案

它们在 C++ 中没有区别。但是,C 仅支持第一个强制转换操作。

请参阅来自 tutorial 的此示例:

double x = 10.3;
int y;
y = (int) x; // c-like cast notation
y = int (x); // functional notation

关于c++ - ((int) 和 (int(a)) 之间有什么区别?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/59808872/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com