常見的型別轉換

2021-10-24 21:26:03 字數 1121 閱讀 6109

/**

* 常見的型別轉換

*/@test

public

void

test1()

//4,字元型陣列轉換成字串

char chars1=

; string st = string.

valueof

(chars1)

; system.out.

println

(st)

;//5,long型別轉換為string

long l=

123;

string st2 = string.

valueof

(l);

system.out.

println

(st2)

;//6,integer轉string

integer a=

123;

//包裝類呼叫tostring()方法,返回該物件的字串

string st3 = a.

tostring()

; system.out.

println

(st3)

;//7,string轉integer

string st4=

"123"

;int i2 = integer.

parseint

(str4)

; system.out.

println

(i2)

;//8,integer轉換成int的方法

integer in=

123;

int i3 = in.

intvalue()

; system.out.

println

(i3)

;//9,int轉換成integer

int i4=

123;

integer integer =

newinteger

(i4)

; system.out.

println

(integer)

;}

常見的型別轉換

常見的型別轉換 test public void test1 4,字元型陣列轉換成字串 char chars1 string st string.valueof chars1 system.out.println st 5,long型別轉換為string long l 123 string st2 ...

常見型別的轉換

金額數值型別轉換保留兩位小數,不足0不捨去 numberformat numberformat new decimalformat 00 return numberformat.format value 金額數值型別轉換 保留兩位小數 numberformat numberformat new de...

Golang常見型別轉換

int time.now weekday 星期轉int int time.now month 月份轉intvar a float64 a 3.1 b int a float64轉intvar a int a 1 b int64 a int轉int64 string和int int32 int64 i...