Is there any difference between type casting amp; type conversion?(类型转换和类型转换之间有什么区别吗?类型转换?)
问题描述
类型转换和类型转换有什么区别吗?c++中的类型转换.
Is there any difference between type casting & type conversion in c++.
推荐答案
一般来说,强制转换是指显式转换,不管是C风格的强制转换(T(v)
还是(T)v
) 或 C++ 风格的转换(static_cast
、const_cast
、dynamic_cast
或 reinterpret_cast
).转换通常是一个更通用的术语,用于将变量转换为另一个变量:
Generally, casting refers to an explicit conversion, whether it's done by C-style cast (T(v)
or (T)v
) or C++-style cast (static_cast
, const_cast
, dynamic_cast
, or reinterpret_cast
). Conversion is generally a more generic term used for any time a variable is converted to another:
std::string s = "foo"; // Conversion from char[] to char* to std::string
int i = 4.3; // Conversion from float to int
float *f = reinterpret_cast<float*>(&i); // (illegal) conversion from int* to float*
这篇关于类型转换和类型转换之间有什么区别吗?类型转换?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:类型转换和类型转换之间有什么区别吗?类型转换?
基础教程推荐
- 如何使图像调整大小以在 Qt 中缩放? 2021-01-01
- 在 C++ 中循环遍历所有 Lua 全局变量 2021-01-01
- 从 std::cin 读取密码 2021-01-01
- 为什么语句不能出现在命名空间范围内? 2021-01-01
- 如何“在 Finder 中显示"或“在资源管理器中显 2021-01-01
- 使用从字符串中提取的参数调用函数 2022-01-01
- Windows Media Foundation 录制音频 2021-01-01
- 如何在不破坏 vtbl 的情况下做相当于 memset(this, ...) 的操作? 2022-01-01
- 管理共享内存应该分配多少内存?(助推) 2022-12-07
- 为 C/C++ 中的项目的 makefile 生成依赖项 2022-01-01