ThinkChat2.0新版上线,更智能更精彩,支持会话、画图、阅读、搜索等,送10W Token,即刻开启你的AI之旅 广告
# short(C# 参考) **short** 关键字表示一种整数数据类型,该类型根据下表显示的大小和范围存储值。 | 类型 | 范围 | 大小 | .NET Framework 类型 | | --- | --- | --- | --- | | **short** | -32,768 到 32,767 | 有符号 16 位整数 | [System.Int16](https://msdn.microsoft.com/zh-CN/library/system.int16.aspx) | ## 文本 可如下例所示声明并初始化 **short** 类型的变量: ``` short x = 32767; ``` 在以上声明中,整数 32767 从 [int](https://msdn.microsoft.com/zh-CN/library/5kzh1b5w.aspx) 隐式转换为 **short**。 如果整数的长度超过了 **short** 存储位置的大小,则将产生编译错误。 调用重载方法时必须使用强制转换。 以下面使用 **short** 和 [int](https://msdn.microsoft.com/zh-CN/library/5kzh1b5w.aspx) 参数的重载方法为例: ``` public static void SampleMethod(int i) {} public static void SampleMethod(short s) {} ``` 使用 **short** 强制转换可保证调用正确的类型,例如: ``` SampleMethod(5); // Calling the method with the int parameter SampleMethod((short)5); // Calling the method with the short parameter ``` ## 转换 存在从 **short** 到 [int](https://msdn.microsoft.com/zh-CN/library/5kzh1b5w.aspx)、[long](https://msdn.microsoft.com/zh-CN/library/ctetwysk.aspx)、[float](https://msdn.microsoft.com/zh-CN/library/b1e65aza.aspx)、[double](https://msdn.microsoft.com/zh-CN/library/678hzkk9.aspx) 或 [decimal](https://msdn.microsoft.com/zh-CN/library/364x0z75.aspx) 的预定义隐式转换。 不能将存储大小更大的非文本数值类型隐式转换为 **short** 类型(有关整型的存储大小的信息,请参见 [整型表(C# 参考)](https://msdn.microsoft.com/zh-CN/library/exx3b86w.aspx))。 例如,请看以下两个 **short** 变量 x 和 y: ``` short x = 5, y = 12; ``` 以下赋值语句将产生一个编译错误,原因是赋值运算符右侧的算术表达式在默认情况下的计算结果为 [int](https://msdn.microsoft.com/zh-CN/library/5kzh1b5w.aspx) 类型。 **short** z = x + y; // Error: no conversion from int to short 若要解决此问题,请使用强制转换: **short** z = ( **short** )(x + y); // OK: explicit conversion 但是,在目标变量具有相同或更大的存储大小时,使用下列语句是可能的: ``` int m = x + y; long n = x + y; ``` 不存在从浮点型到 **short** 类型的隐式转换。 例如,除非使用显式强制转换,否则以下语句将生成一个编译器错误: ``` short x = 3.0; // Error: no implicit conversion from double short y = (short)3.0; // OK: explicit conversion ``` 有关兼用浮点型和整型的算术表达式的信息,请参见 [float](https://msdn.microsoft.com/zh-CN/library/b1e65aza.aspx) 和 [double](https://msdn.microsoft.com/zh-CN/library/678hzkk9.aspx)。 有关隐式数值转换规则的更多信息,请参见 [隐式数值转换表(C# 参考)](https://msdn.microsoft.com/zh-CN/library/y5b434w4.aspx)。 ## C# 语言规范 有关详细信息,请参阅 [C# 语言规范](https://msdn.microsoft.com/zh-CN/library/ms228593.aspx)。该语言规范是 C# 语法和用法的权威资料。 ## 请参阅 [Int16](https://msdn.microsoft.com/zh-CN/library/system.int16.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/x53a06bb.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) [显式数值转换表(C# 参考)](https://msdn.microsoft.com/zh-CN/library/yht2cx7b.aspx)