C 列舉和字串以及數字之間的互相轉換

2022-02-17 17:32:02 字數 602 閱讀 5319

準備條件:

①列舉型別:

1     public enum enumcolor

2

②以下狀態都是理想狀態,並未對錯誤資料進行處理。

1.列舉型別轉換為字串

private string enumconverttostring(enumcolor color)

3.字串轉換為列舉型別

private enumcolor stringconverttoenum(string str)

catch (exception ex)

return color;

}

4.數字轉換為列舉型別

private enumcolor intconverttoenum(int i)

return enumcolor.red;

}

private enumcolor intconverttoenumother(int i)

JAVA中整型和字串以及陣列和字串互相轉化

整型和字串 陣列和字串 int i 1.string s string.valueof i 注 valueof type parameter 返回型別引數的字串表示形式。2.string s integer.tostring i 注 tostring 返回表示此整數值的字串物件.tostring i...

數字和字串之間的轉換

1.數字轉換成字串 1 std string to string intvalue 2 std string to string long value 3 std string to string long long value 4 std string to string unsigned val...

c 中數字和字串之間的互相轉換

1.數字轉向字串 舉個栗子 include stringstream要使用到的標頭檔案 include include using namespace std intmain return0 其輸出的結果 2.字串轉數字 步驟和上面相似,還是 舉個栗子 include include include...