本文主要是介绍编写一个程序,用valueOf()方法将long型数据12345678转换为字符串。再用toString()方法将十进制int型数据100转换为十六进制数表示的字符串。,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
public class TestValue {
public static void main(String[] args) {
long l = 12345678;
int i = 100;
String str1 = String.valueOf(l);
String str2 = Integer.toString(i, 16).toUpperCase();
System.out.println(str1);
System.out.println(str2);
}
}
这篇关于编写一个程序,用valueOf()方法将long型数据12345678转换为字符串。再用toString()方法将十进制int型数据100转换为十六进制数表示的字符串。的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!