What is the difference between casting and conversion?(铸造和转换有什么区别?)
问题描述
Eric Lippert 在 this question 中的评论让我彻底困惑.C# 中的强制转换和转换有什么区别?
Eric Lippert's comments in this question have left me thoroughly confused. What is the difference between casting and conversion in C#?
推荐答案
我相信 Eric 想说的是:
I believe what Eric is trying to say is:
Casting 是一个描述句法的术语(因此有 句法 的含义).
Casting is a term describing syntax (hence the Syntactic meaning).
转化是一个描述幕后实际采取的行动的术语(因此是语义的含义).
Conversion is a term describing what actions are actually taken behind the scenes (and thus the Semantic meaning).
演员表用于转换对给定的显式表达式输入.
A cast-expression is used to convert explicitly an expression to a given type.
和
(T)E 形式的强制转换表达式,其中 T 是一个类型,E 是一个一元表达式,执行显式E 值的转换(§13.2)键入 T.
A cast-expression of the form (T)E, where T is a type and E is a unary-expression, performs an explicit conversion (§13.2) of the value of E to type T.
似乎通过说语法中的强制转换运算符执行显式转换来支持这一点.
Seems to back that up by saying that a cast operator in the syntax performs an explicit conversion.
这篇关于铸造和转换有什么区别?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:铸造和转换有什么区别?


基础教程推荐
- 将 XML 转换为通用列表 2022-01-01
- SSE 浮点算术是否可重现? 2022-01-01
- 如何在 IDE 中获取 Xamarin Studio C# 输出? 2022-01-01
- 为什么Flurl.Http DownloadFileAsync/Http客户端GetAsync需要 2022-09-30
- c# Math.Sqrt 实现 2022-01-01
- rabbitmq 的 REST API 2022-01-01
- 如何激活MC67中的红灯 2022-01-01
- 将 Office 安装到 Windows 容器 (servercore:ltsc2019) 失败,错误代码为 17002 2022-01-01
- 有没有办法忽略 2GB 文件上传的 maxRequestLength 限制? 2022-01-01
- MS Visual Studio .NET 的替代品 2022-01-01