JAVA中數字型別與字串之間的轉換

2021-06-21 12:23:13 字數 1021 閱讀 4744

各種數字型別轉換成字串型:

string s = string.valueof( value); // 其中 value 為任意一種數字型別。

例:double a;

string s=string.valueof(a);

字串型轉換成各種數字型別:

string s = "169";

byte b = byte.parsebyte( s );

short t = short.parseshort( s );

int i = integer.parseint( s );

long l = long.parselong( s );

float f = float.parsefloat( s );

double d = double.parsedouble( s );

數字型別與數字類物件之間的轉換:

byte b = 169;

byte bo = new byte( b );

b = bo.bytevalue();

short t = 169;

short to = new short( t );

t = to.shortvalue();

int i = 169;

integer io = new integer( i );

i = io.intvalue();

long l = 169;

long lo = new long( l );

l = lo.longvalue();

float f = 169f;

float fo = new float( f );

f = fo.floatvalue();

double d = 169f;

double dobj = new double( d );

d = dobj.doublevalue();

Java字串,數字之間的轉換

1 如何將字串string轉化為整數int int i integer.parseint str int i integer.valueof my str intvalue 注 字串轉成double,float,long的方法大同小異。2 如何將字串string轉化為integer integer ...

C 中數字與字串之間的轉換

1 字串數字之間的轉換 1 string char string str ok char p str.c str 2 char string char p ok string str p 3 char cstring char p ok cstring m str p 或者 cstring m st...

C 中數字與字串之間的轉換

1 string char string str ok char p str.c str 2 char string char p ok string str p 3 char cstring char p ok cstring m str p 或者 cstring m str m str.form...