String類 之轉換

2021-08-30 06:47:38 字數 761 閱讀 2218

3.轉換

3.1 將字元陣列轉成字串(兩個方法一樣)

建構函式: string(char)

stirng(char,offset,count):將字元陣列中的一部分轉成字元

靜態方法

static string copyvalueof(char)

static string xopyvalueof(char data,int offset,int count)

package myclass;

class stringmethod

public static void method_trans()

;string s= new string(arr,1,3);

sop(「s=」 +s);}}

3.2將字串轉成字元陣列

char{} tochararray();

package myclass;

class stringmethod

public static void method_trans()}}

3.3將位元組陣列轉成字串

3.4將字串轉成位元組陣列

byte getbytes();

3.5將基本資料型別轉換為字串

static string valueof(int)

static string valueof(double)

特殊:::字串和位元組陣列在轉換過程中,是可以指定編碼表的。

String類的轉換功能

定義乙個字串 string s1 abc byte getbytes 將字串轉換成位元組陣列 byte bys s1.getbytes 97,98,99 for int i 0 i字串 123 此為靜態方法,可以直接呼叫 string s2 string.valueof 123 system.out...

String類如何轉換為陣列

1.列印結果 routeresult routeresult為string型別,想把返回值中的中括號去掉 routeresult.replace routeresult.replace system.out.println routeresult routeresult 返回值和原值一樣,中括號還存...

C 學習之string類

string類 string初始化 示例 include includeusing namespace std int main string s1 hello world 把字串賦給當前字串s1 cout string字元操作 示例 include includeusing namespace s...