今天的日子还算有点特殊吧,但是,不管生活怎么变,双手还是要行动起来的
掌握知识点
第一关
- 包装类-装箱基本概念
- 手动装箱、自动装箱
- 手动拆箱、自动拆箱
第二关
第三关
第1关:基本数据类型和包装类之间的转换
package step1;
public class Task {
public static void main(String[] args) {
float f = 66.6f;
Float f1 = new Float(f);
Float f2 = f;
System.out.println("装箱后的结果为:" + f1 + "和" + f2);
Double d = new Double(88.88);
double d1 = d.doubleValue();
double d2 = d;
System.out.println("拆箱结果为:" + d1 + "和" + d2);
}
}
第2关:包装类转换成其他数据类型
package step2;
public class Task {
public static void main(String[] args) {
int score = 67;
Integer score1 = new Integer(score);
double score2 = score1.doubleValue();
float score3 = score1.floatValue();
int score4 = score1.intValue();
System.out.println("Integer包装类:" + score1);
System.out.println("double类型:" + score2);
System.out.println("float类型:" + score3);
System.out.println("int类型:" + score4);
}
}
第3关:包装类与字符串之间的转换
package step3;
public class Task {
public static void main(String[] args) {
double a = 78.5;
String str = Double.toString(a);
System.out.println("str + 12 的结果为: "+(str + 12));
String str1 = "180.20";
double d = Double.parseDouble(str1);
System.out.println("d + 100 的结果为: "+ (d + 100));
}
}
|