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.
这篇关于铸造和转换有什么区别?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:铸造和转换有什么区别?
基础教程推荐
- Moq It.Is<>不匹配 2022-01-01
- 当值可以是对象或空数组时反序列化 JSON 2022-01-01
- WPF 模态进度窗口 2022-01-01
- 如何使用 .Net 检查 Active Directory 服务器是否已启动并正在运行? 2022-01-01
- .NET SerialPort DataReceived 事件未触发 2022-01-01
- 如果有人提交恶意软件Nuget包怎么办? 2022-01-01
- Azure Functions:CosmosDBTrigger 未在 Visual Studio 中触发 2022-01-01
- 我应该在后面的代码中直接使用 Linq To SQL 还是使 2022-01-01
- 禁止输入少量字符,例如'<'、'&a 2022-01-01
- C# 从 List<List<int>> 中删除重 2022-01-01
