💎一站式轻松地调用各大LLM模型接口,支持GPT4、智谱、星火、月之暗面及文生图 广告
# 显式数值转换表(C# 参考) 显式数值转换用于通过显式转换表达式,将任何数字类型转换为任何其他数字类型。对于它不存在隐式转换。下表显示了这些转换。 有关转换的更多信息,请参见 [强制转换和类型转换(C# 编程指南)](https://msdn.microsoft.com/zh-CN/library/ms173105.aspx)。 | 源 | 目标 | | --- | --- | | [sbyte](https://msdn.microsoft.com/zh-CN/library/d86he86x.aspx) | **byte**、**ushort**、**uint**、**ulong** 或 **char** | | [byte](https://msdn.microsoft.com/zh-CN/library/5bdb6693.aspx) | **Sbyte** 或 **char** | | [short](https://msdn.microsoft.com/zh-CN/library/ybs77ex4.aspx) | **sbyte**、**byte**、**ushort**、**uint**、**ulong** 或 **char** | | [ushort](https://msdn.microsoft.com/zh-CN/library/cbf1574z.aspx) | **sbyte**、**byte**、**short** 或 **char** | | [int](https://msdn.microsoft.com/zh-CN/library/5kzh1b5w.aspx) | **sbyte**、**byte**、**short**、**ushort**、**uint**、**ulong** 或 **char** | | [uint](https://msdn.microsoft.com/zh-CN/library/x0sksh43.aspx) | **sbyte**、**byte**、**short**、**ushort**、**int** 或 **char** | | [long](https://msdn.microsoft.com/zh-CN/library/ctetwysk.aspx) | **sbyte**、**byte**、**short**、**ushort**、**int**、**uint**、**ulong** 或 **char** | | [ulong](https://msdn.microsoft.com/zh-CN/library/t98873t4.aspx) | **sbyte**、**byte**、**short**、**ushort**、**int**、**uint**、**long** 或 **char** | | [char](https://msdn.microsoft.com/zh-CN/library/x9h8tsay.aspx) | **sbyte**、**byte** 或 **short** | | [float](https://msdn.microsoft.com/zh-CN/library/b1e65aza.aspx) | **sbyte**、**byte**、**short**、**ushort**、**int**、**uint**、**long**、**ulong**、**char** 或 **decimal** | | [double](https://msdn.microsoft.com/zh-CN/library/678hzkk9.aspx) | **sbyte**、**byte**、**short**、**ushort**、**int**、**uint**、**long**、**ulong**、**char**、**float** 或 **decimal** | | [decimal](https://msdn.microsoft.com/zh-CN/library/364x0z75.aspx) | **sbyte**、**byte**、**short**、**ushort**、**int**、**uint**、**long**、**ulong**、**char**、**float** 或 **double** | ## 备注 * 显式数值转换可能导致精度损失或引发异常。 * 将 **decimal** 值转换为整型时,该值将舍入为与零最接近的整数值。如果结果整数值超出目标类型的范围,则会引发 [OverflowException](https://msdn.microsoft.com/zh-CN/library/system.overflowexception.aspx)。 * 将 **double** 或 **float** 值转换为整型时,值会被截断。如果该结果整数值超出了目标值的范围,其结果将取决于溢出检查上下文。在 checked 上下文中,将引发 **OverflowException**;而在 unchecked 上下文中,结果将是一个未指定的目标类型的值。 * 将 **double** 转换为 **float** 时,**double** 值将舍入为最接近的 **float** 值。如果 **double** 值因过小或过大而使目标类型无法容纳它,则结果将为零或无穷大。 * 将 **float** 或 **double** 转换为 **decimal** 时,源值将转换为 **decimal** 表示形式,并舍入为第 28 个小数位之后最接近的数(如果需要)。根据源值的不同,可能产生以下结果: * 如果源值因过小而无法表示为 **decimal**,那么结果将为零。 * 如果源值为 NaN(非数字值)、无穷大或因过大而无法表示为 **decimal**,则会引发 **OverflowException**。 * 将 **decimal** 转换为 **float** 或 **double** 时,**decimal** 值将舍入为最接近的 **double** 或 **float** 值。 有关显式转换的更多信息,请参见“C# 语言规范中的显式”。有关如何访问此规范的更多信息,请参见 [C# 语言规范](https://msdn.microsoft.com/zh-CN/library/ms228593.aspx)。 ## 请参阅 [C# 参考](https://msdn.microsoft.com/zh-CN/library/618ayhy6.aspx) [C# 编程指南](https://msdn.microsoft.com/zh-CN/library/67ef8sbd.aspx) [强制转换和类型转换(C# 编程指南)](https://msdn.microsoft.com/zh-CN/library/ms173105.aspx) [() 运算符(C# 参考)](https://msdn.microsoft.com/zh-CN/library/0z4503sa.aspx) [整型表(C# 参考)](https://msdn.microsoft.com/zh-CN/library/exx3b86w.aspx) [内置类型表(C# 参考)](https://msdn.microsoft.com/zh-CN/library/ya5y69ds.aspx) [隐式数值转换表(C# 参考)](https://msdn.microsoft.com/zh-CN/library/y5b434w4.aspx)