Summary of Class
- What is the class?How to create a class?
- Constructor
- this(super)
- static
What is the class?How to create a class?
- 类(class)是一个模版,表示一类对象的行为(method)和属性(attribute)
- 对象(object)是类的一个实例,有属性和行为
- 例子
Constructor
-
what is the constructor?
对象被创建的时候 (也就是对象在main method 中被new的时候)会自动调用的方法。
例子:
输出:我被调用了
-
How to define and use a constructor?
构造方法和普通的方法有所不同。
区别如下:
1:constructor可以有参数也可以没有参数
2:constructor method 没有返回值,所以不需要声明void
3:constructor的命名必须和class同名
This
The goal using this keyword:Sets the member variables of the object.
例子:
如果改成this.name=name和this.age=age就会变成student属性name:李四,10岁
解决这个需要先了解:
1:什么是成员变量
answer:成员变量就是对象的属性。
2:this关键字
answer:this就是代表自己,this.属性 访问的是自己的属性,this()访问的就是自己的无参构造方法
例子:
Static
-
static关键字有什么作用?
Answer:static modifier(can be seen as a adj )可以修饰类,变量,方法的。
static关键字方便在没有创建对象的情况下来进行调用(没有new一个对象的情况下)
If:不使用static关键字访问对象的属性需要先new一个对象
If使用static关键字,便可以直接访问
注意:如果一个类的成员变量被static修饰了,那么所有该类的对象都共享这个变量。无论这个类实例化多少对象,它的静态变量只有一份拷贝。例子:
-
怎么使用static关键字(只需要类名.方法名/属性名即可)
对于普通方法,需要new一个对象,再通过对象名.方法名()调用。
-
对于static静态代码块,在类被加载的时候运行且只运行一次。
形如:static{ }