Java基础【基本数据类型包装类、int与String 之间的相互转换】
2021-06-20 05:03
标签:float 为什么 一个 对象 变量 OLE integer 定义 -- 为什么会有基本类型包装类? 将基本类型数据类型封装成对象,这样的好处可以在对象中定义更多方法操作该数据。 包装类常用的操作就是用于基本数据类型与字符串之间的转换 问题: 基本数据类型 存放的就是数值 所以不能强制转换 int a =100; //2.Integer 的静态属性 //3.Integer 的其他方法(进制间转换) Integer.toBinaryString(8); //1000 把int转换成二进制的字符串 Integer.toOctalsString (9); //11 把int转换成八进制的字符串 Integer.toHexString(17); // 11 吧int转换成十六进制的字符串 String 与 int 之间的转换 一、int转String 1.1 和 "" 进行拼接 1.2 public static String valueOf(int i) 1.3 int 转换成包装类 然后在使用toString() 对象.getClass() 打印对象在运行时的类型 2.2 public static int parseInt(String s) Java基础【基本数据类型包装类、int与String 之间的相互转换】 标签:float 为什么 一个 对象 变量 OLE integer 定义 -- 原文地址:https://www.cnblogs.com/kangxinxin/p/9689606.html
int a=100; 为什么不能使用 String s = (String) a;
String s 是对象引用,a是基本数据类型,
对象就是引用类型 对象变量存的是内存地址
基本数据对应的包装类
byte Byte
short Short
int Integer [先学习这个 其他的后面用到在学习]
float Float
double Double
char Character
boolean Boolean
//1.Integer 构造方法
Integer (int value)
Integer (String s) //构造一个新分配的Integer对象,他表示指定的int值
Integer integer = new Integer(a);
String s = integer.toString();
System.out.println(Integer.MIN_VALUE);
System.out.println(Integer.MAX_VALUE);
int a = 100;
String s1 = a+"";
String s2 = String.valueOf(a);
Integer integer = new Integer (a);
String s3 = integer.toString(a);
1.4 public static String toString(int i)
String s4 = integer.toString(a);
二、String 转int
String str = "520"
2.1 String -- Integer -int
Integer int1= new Integer(str);
int value = int1.intValue();
int c = Integer.parseInt(str); //这个是经常使用的方法
上一篇:capitalize()
下一篇:判断文件是否为空 C++
文章标题:Java基础【基本数据类型包装类、int与String 之间的相互转换】
文章链接:http://soscw.com/index.php/essay/96267.html