short (C# 參考)
short 關鍵字表示一種儲存數值的整數資料型別,其儲存數值的大小與範圍如下表所示。
型別 |
Range |
Size |
.NET Framework 型別 |
---|---|---|---|
short |
-32,768 至 32,767 |
帶正負號的 16 位元整數 |
常值
您可以採用以下範例中同時宣告和初始化 short 型別變數的做法:
short x = 32767;
在上述宣告裡,整數常值 32767 隱含地從 int 轉換成 short。 如果 short 無法容納整個整數常值,便會產生編譯錯誤。
呼叫多載方法時必須使用轉換。 以下列使用 short 和 int 參數的多載方法為例:
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、long、float、double 或 decimal 之預先定義的隱含轉換。
您不能將儲存容量較大的非常值數字型別隱含轉換成 short (如需整數類資料型別儲存大小的詳細資訊,請參閱整數類資料類型表 (C# 參考))。 以下列兩個 short 變數 x 和 y 為例:
short x = 5, y = 12;
下列指派陳述式會產生編譯錯誤,因為根據預設,指派運算子右邊的算術運算式會評估為 int。
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 和 double。
如需隱含數字轉換規則的詳細資訊,請參閱隱含數值轉換表 (C# 參考)。
C# 語言規格
如需詳細資訊,請參閱<C# 語言規格>。語言規格是 C# 語法及用法的限定來源。