JavaSE8基础 Integer.toString 将int类型转为同面值的String类型
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了JavaSE8基础 Integer.toString 将int类型转为同面值的String类型相关的知识,希望对你有一定的参考价值。
os :windows7 x64
jdk:jdk-8u131-windows-x64
ide:Eclipse Oxygen Release (4.7.0)
code:
package jizuiku3; public class Demo001 { public static void main(String[] args) { int num = 1;//int 没有 tostring方法 Integer i = new Integer(num);//Integer有 tostring方法 String s = i.toString(); System.out.println(s); //还有一个静态的方法 String s1 =Integer.toString(num); System.out.println(s1); } }
result:
Java优秀,值得学习。
学习资源:API手册+Java源码+清净的心地。
以上是关于JavaSE8基础 Integer.toString 将int类型转为同面值的String类型的主要内容,如果未能解决你的问题,请参考以下文章