学习小结
15.1 API 概念
API(Application Programming Interface)就是应用程序接口。
15.2 基本数据类型的包装类
基本数据类型 | 基本数据类型包装类 |
---|---|
int | Integer |
char | Character |
float | Float |
double | Double |
byte | Byte |
long | Long |
short | Short |
boolean | Boolean |
范例 15-1 使用包装类
package com.Javastudy2;
/**
* @author Y.W.
* @date 2018年5月9日 下午9:47:14
* @Description TODO 使用包装类
*/
public class P387_15_1 {
public static void main(String[] args) {
String a = "123"; // 定义一个字符串
int i = Integer.parseInt(a); // 将字符串换成整数
i++; // 将i在原有数值上加1
System.out.println(i); // 输出i的值
}
}
运行结果:
15.2.1 装箱与拆箱
装箱,就是把基本类型用它们的引用类型包起来,使它们具有对象特质;拆箱反之,将包装类变成基本数据类型。
范例 15-2 装箱与拆箱
package com.Javastudy2;
/**
* @author Y.W.
* @date 2018年5月9日 下午10:08:43
* @Description TODO 装箱与拆箱
*/
public class P387_15_2 {
public static void main(String[] args) {
Integer x = new Integer(10); // 基本类型变成包装类,装箱
int temp = x.intValue(); // 包装类变成基本类型,拆箱
System.out.println(temp * temp);
}
}
运行结果:
思考
终于到库文件库函数了。
记于2018-5-9 22:16:09
By Yvan