C# 编程/关键字/显式
外观
< C Sharp 编程 | 关键字
当值被隐式转换时,运行时不需要开发人员在代码中进行任何转换以使值转换为其新的类型。
以下是一个示例,开发人员在其中显式转换
// Example of explicit casting.
float fNumber = 100.00f;
int iNumber = (int) fNumber;
开发人员已经告诉运行时,“我知道我在做什么,强制执行此转换”。
隐式转换意味着运行时不需要任何提示即可执行转换。这是一个示例。
// Example of implicit casting.
byte bNumber = 10;
int iNumber = bNumber;
请注意,开发人员不需要进行任何转换。隐式转换的特殊之处在于,转换到的类型上下文是完全无损的,即转换为该类型不会丢失任何信息,因此可以毫无顾虑地转换回来。
explicit
关键字用于创建仅通过指定显式类型转换才能使用的类型转换运算符。
此结构有助于软件开发人员编写更易读的代码。具有显式转换名称可以清楚地表明正在进行转换。
class Something
{
public static explicit operator Something(string s)
{
// Convert the string to Something
}
}
string x = "hello";
// Implicit conversion (string to Something) generates a compile time error
Something s = x;
// This statement is correct (explicit type name conversion)
Something s = (Something) x;
C# 关键字 | |||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
特殊 C# 标识符(上下文关键字) | |||||||||||||||
| |||||||||||||||
上下文关键字(用于查询) | |||||||||||||||
|