String與其他基本型別直接的轉換

2021-09-29 12:54:59 字數 535 閱讀 2783

一、基本型別轉換成string

方法:string.valueof();

例子:int a=123;

string s=string.valueof(a); //s=「123」

二、string轉換成其他基本型別。

方法:基本型別的包裝類.parse基本型別();

例子:string a=「123」;

int b=integer.parseint(str); //b=123

三、string與byte和char資料轉換

string→char陣列

string的tochararray() 例項方法

char陣列→string

構造方法(.tostring)

copyvalueof()靜態方法

兩者等價

string→byte陣列

getbyte 例項方法

byte 陣列→string

構造方法

基本型別與其封裝型別

基本型別與其封裝型別對應的關係如下 byte byte short short int integet long long float float double double boolean boolean char character 基本型別的值轉化成封裝類物件 時,有兩種方法 v 直接用new...

String與其他型別的轉換

1.由 基本資料型態轉換成 string string 類別中已經提供了將基本資料型態轉換成 string 的 static 方法 也就是 string.valueof 這個引數多載的方法 有下列幾種 string.valueof boolean b 將 boolean 變數 b 轉換成字串 str...

string與其他資料型別之間的轉換

c 封裝了一系列函式,使得string型別的資料能夠被方便地轉換到其他資料型別。這些函式名有著統一的風格,即stox string to x,x為要轉換到的型別名縮寫 函式名轉換到 stoi intstol long stoul unsigned long stoll long long stoul...