API:应用程序编程接口(Application Programming Interface)
javaAPI:javaAPI指的就是JDK中提供的各种功能的Java类
- Class Object is the root of the class hierarchy. Every class has Object as a superclass.
- All objects, including arrays, implement the methods of this class.
学会如何阅读API:
1.该类是哪个包下的
2.该类的概述
3.继承关系
4.实现的接口
5.重哪个版本开始的
6.相关类
7.如果是接口
____可以观察接口的实现类
如果是抽象类:
____可以看子类或者看当前类的静态方法是否返回该类的对象
如果是普通类:
____直接看构造方法
8.构造方法
9.普通方法
Object类概述:
1.该类是类层次结构的根类
2.每一个类直接或者间接继承该类
3.所有的类,包括数组都实现这个类中的方法
4.任何一个类都会访问Object类的无参构造方法
____一旦访问到父类的Object构造方法,就会将Object加载到内存空间中,就会执行Object类的静态代码块
5.满足Java的核心思想,万事万物皆对象
package com.sxt.objectdemo;
import java.util.Calendar;
public class ObjectDemo01 {
public static void main(String[] args) {
Object obj = new Student();
Inter i = new Inter() {
};
int[] arr = new int[10];
PrimaryStudent ps = new PrimaryStudent();
}
}
class PrimaryStudent extends Student {
public PrimaryStudent() {
super();
}
}
interface Inter {
}