Integer.parseInt()將字符串參數解析為帶符號的十進位整數。 // 使用Integer.parseInt() String str = "1234"; int number = Integer.parseInt(str); ...
確定! 回上一頁