什麼是顯式轉換
Explicit Conversion
就是在將一種類型轉換成另外一種類型時,需要額外的代碼來完成這種轉換。
代碼如下:
int n = 1;
byte b = (byte)n; // 正確,顯式轉換
byte b2 = n; // 錯誤
顯式轉換需要注意,它的結果不一定是我們想要的。
代碼如下:
int n = 256;
byte b = (byte)n; // 結果是 0
上面的結果是 0,因為超過 255 了,它就從 0 開始;
如果 n 是 257,那麼 b 就是 1;
如果 n 是 258,那麼 b 就是 2;
……
由此還得說下 Convert,Convert 這個類用來轉換類型,它有很多方法,比如 ToInt32,就是轉換成 int。它涉及的類型跨度很大,比如可將 object、string 等轉換成 int,而 (int) 則只能將數字類型轉換成 int。
更多相關內容,請參見 Convert、Parse、TryParse、(int) 的區別。
顯式數值轉換表(摘自 MSDN)
從
到
sbyte
byte、ushort、uint、ulong 或 char
byte
Sbyte 或者char
short
sbyte、byte、ushort、uint、ulong 或 char
ushort
sbyte、byte、short 或 char
int
sbyte、byte、short、ushort、uint、ulong 或 char
uint
sbyte、byte、short、ushort、int 或 char
long
sbyte、byte、short、ushort、int、uint、ulong 或 char
ulong
sbyte、byte、short、ushort、int、uint、long 或 char
char
sbyte、byte 或 short
float
sbyte、byte、short、ushort、int、uint、long、ulong、char 或 decimal
double
sbyte、byte、short、ushort、int、uint、long、ulong、char、float 或 decimal
decimal
sbyte、byte、short、ushort、int、uint、long、ulong、char、float 或 double
備注(摘自 MSDN)
顯式數值轉換可能導致精度損失或引發異常。
將 decimal 值轉換為整型時,該值將捨入為與零最接近的整數值。如果結果整數值超出目標類型的范圍,則會引發 OverflowException。
將 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 值。