数字与字符串相互转换
Posted z-cg
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了数字与字符串相互转换相关的知识,希望对你有一定的参考价值。
数字转字符串
方法一:使用String类的静态方法valueOf()
方法二:先把基本类型装箱为对象,然后调用对象的toString方法
1 public class TestNumber { 2 3 public static void main(String[] args) { 4 int i = 5; 5 6 //方法1 7 String str = String.valueOf(i); 8 9 //方法2 10 Integer it = i; 11 String str2 = it.toString(); 12 13 } 14 }
字符串转数字
调用Integer的静态方法parseInt
1 public class TestNumber { 2 3 public static void main(String[] args) { 4 5 String str = "999"; 6 7 int i= Integer.parseInt(str); 8 9 System.out.println(i); 10 11 } 12 }
以上是关于数字与字符串相互转换的主要内容,如果未能解决你的问题,请参考以下文章