這次和小編一起學(xué)習(xí)網(wǎng)站建設(shè)的C#基礎(chǔ),中的數(shù)值轉(zhuǎn)換-隱式數(shù)值轉(zhuǎn)換!
什么是隱式轉(zhuǎn)換
Implicit Conversion
隱式轉(zhuǎn)換就是直接使用,比如可以把一個(gè) byte 類型直接用在 int 上。
比如以下直接把 byte 的 b 賦給 int 的 n,之間是直接用的,沒存在什么額外的關(guān)鍵字,全由系統(tǒng)自動(dòng)完成類型轉(zhuǎn)換。
byte b = 1;
int n = b;
隱式數(shù)值轉(zhuǎn)換表
sbyte
short、int、long、float、double 或 decimal
byte
short、ushort、int、uint、long、ulong、float、double 或 decimal
short
int、long、float、double 或 decimal
ushort
int、uint、long、ulong、float、double 或 decimal
int
long、float、double 或 decimal
uint
long、ulong、float、double 或 decimal
long
float、double 或 decimal
char ushort、int、uint、long、ulong、float、double 或 decimal
float
double
ulong
float、double 或 decimal
備注
從 int、uint 或 long 到 float 的轉(zhuǎn)換以及從 long 到 double 的轉(zhuǎn)換的精度可能會(huì)降低,但數(shù)值大小不受影響。
不存在到 char 類型的隱式轉(zhuǎn)換。
不存在浮點(diǎn)型與 decimal 類型之間的隱式轉(zhuǎn)換。
int 類型的常數(shù)表達(dá)式可轉(zhuǎn)換為 sbyte、byte、short、ushort、uint 或 ulong,前提是常數(shù)表達(dá)式的值處于目標(biāo)類型的范圍之內(nèi)。