C#類型 參考表(MSDN)

來源:互聯網
上載者:User

實值型別表

實值型別 類別

bool

布爾型

byte

無符號、數值、整數

char

無符號、數值、整數

decimal

數值、十進位

double

數值、浮點

enum

枚舉

float

數值、浮點

int

有符號、數值、整數

long

有符號、數值、整數

sbyte

有符號、數值、整數

short

有符號、數值、整數

struct

使用者定義的結構

uint

無符號、數值、整數

ulong

無符號、數值、整數

ushort

無符號、數值、整數

整型表

類型 範圍 大小

sbyte

-128 到 127

有符號 8 位整數

byte

0 到 255

無符號 8 位整數

char

U+0000 到 U+ffff

16 位 Unicode 字元

short

-32,768 到 32,767

有符號 16 位整數

ushort

0 到 65,535

無符號 16 位整數

int

-2,147,483,648 到 2,147,483,647

有符號 32 位整數

uint

0 到 4,294,967,295

無符號 32 位整數

long

-9,223,372,036,854,775,808 到 9,223,372,036,854,775,807

有符號 64 位元整數

ulong

0 到 18,446,744,073,709,551,615

無符號 64 位元整數

浮點型表

類型 大致範圍 精度

float

±1.5e−45 到 ±3.4e38

7 位

double

±5.0e−324 到 ±1.7e308

15 到 16 位

內建類型表

C# 類型 .NET Framework 類型

bool

System.Boolean

byte

System.Byte

sbyte

System.SByte

char

System.Char

decimal

System.Decimal

double

System.Double

float

System.Single

int

System.Int32

uint

System.UInt32

long

System.Int64

ulong

System.UInt64

object

System.Object

short

System.Int16

ushort

System.UInt16

string

System.String

    備忘
       除了 objectstring 外,表中的所有類型均稱為簡單類型。

預設值表

實值型別 預設值

bool

false

byte

0

char

'"0'

decimal

0.0M

double

0.0D

enum

運算式 (E)0 產生的值,其中 E 為 enum 標識符。

float

0.0F

int

0

long

0L

sbyte

0

short

0

struct

將所有的實值型別欄位設定為預設值並將所有的參考型別欄位設定為 null 時產生的值。

uint

0

ulong

0

ushort

0


隱式數值轉換表

sbyte

shortintlongfloatdoubledecimal

byte

shortushortintuintlongulongfloatdoubledecimal

short

intlongfloatdoubledecimal

ushort

intuintlongulongfloatdoubledecimal

int

longfloatdoubledecimal

uint

longulongfloatdoubledecimal

long

floatdoubledecimal

char

ushortint uint longulong floatdoubledecimal

float

double

ulong

float doubledecimal

 
備忘
     從 intuintlongfloat 的轉換以及從 longdouble 的轉換的精度可能會降低,但數值大小不受影響。
     不存在到 char 類型的隱式轉換。
     不存在浮點型與 decimal 類型之間的隱式轉換。
     int 類型的常數運算式可轉換為 sbytebyteshortushortuintulong,前提是常數運算式的值處於目標類型的範圍之內。

顯式數值轉換表

sbyte

byteushortuintulongchar

byte

Sbyte 或者 char

short

sbyte byte ushort uint ulong char

ushort

sbyte byte short char

int

sbyte byte short ushort uint ulong decimal

decimal

sbyte byte short ushort int uint long ulong char float double

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.