將資料型別轉換成字串,將字串轉換成資料型別

2021-08-28 03:32:00 字數 620 閱讀 6369

方法1:採用靜態方法

int a = 123456789;

string str = string.valueof(a);

方法2:用包裝類轉換

float a=2.33f;

string str=float.tostring(a);

double a=2.33d;

string str=double.tostring(a);

總結:是什麼資料型別,在轉換時,則是相應的包裝類型別+」.tostring()」方法;

將字串轉換為數字:方法,採用包裝類的方法

int a = 123456789;

string str = string.valueof(a); // 將數字轉換成字串

int num=integer.parseint("123456"); // 將字串轉換為數字

int num1=double.

double a = 123456789;

double num1= double.parsedouble(str);

總結:轉換成什麼資料型別,parse後面跟相應的包裝型別;

將陣列轉換成字串

toarray 摘要 從 system.collections.generic.ienumerable建立乙個陣列。引數 source 要從其建立陣列的 system.collections.generic.ienumerable。型別引數 tsource source 中的元素的型別。返回結果 乙...

將C 數字型別轉換成字串

include include include using namespace std int main 實現這個目標,非stringstream類莫屬。這個類在標頭檔案中定義,sstream 庫定義了三種類 istringstream ostringstream和stringstream,分別用來...

YTU OJ 將整數轉換成字串

問題及 time limit 1 sec memory limit 128 mb submit 135 solved 66 submit status web board 用遞迴法將乙個整數n轉換成字串。例如,輸入483,應輸出字串 483 n的位數不確定,可以是任意位數的整數。提交函式conver...