✅作者简介:大家好,我是橘橙黄又青,一个想要与大家共同进步的男人😉😉
🍎个人主页:再无B~U~G-CSDN博客
目标:
1. 面向对象的初步认知
打个比方:
2. 现代洗衣服过程
2. 类定义和使用
2.1 简单认识类
2.2 类的定义格式
在java中定义类时需要用到class关键字,具体语法如下
// 创建类class ClassName {field ; // 字段 ( 属性 ) 或者 成员变量method ; // 行为 或者 成员方法}
class为定义类的关键字,ClassName为类的名字,{}中为类的主体。
- 类名注意采用大驼峰定义
- 成员前写法统一为public,后面会详细解释
- 此处写的方法不带 static 关键字. 后面会详细解释
2.3 课堂练习
2.3.1 定义一个狗类
class PetDog {
public String name;//名字
public String color;//颜色
// 狗的属性
public void barks() {
System.out.println(name + ": 旺旺旺~~~");
}
// 狗的行为
public void wag() {
System.out.println(name + ": 摇尾巴~~~");
}
}
2.3.2 定义一个学生类
public class Student{
public String name;
public String gender;
public short age;
public double score;
//类成员方法
public void DoClass(){}
public void DoHomework(){}
public void Exam(){}
}
1. 一般一个文件当中只定义一个类2. main方法所在的类一般要使用public修饰(注意:Eclipse默认会在public修饰的类中找main方法)3. public修饰的类必须要和文件名相同4. 不要轻易去修改 public 修饰的类的名称,如果要修改,通过开发工具修改
3. 类的实例化
3.1 什么是实例化
代码:
public class Main{
public static void main(String[] args) {
PetDog dogh = new PetDog(); //通过new实例化对象
dogh.name = "阿黄";
dogh.color = "黑黄";
dogh.barks();
dogh.wag();
PetDog dogs = new PetDog();
dogs.name = "阿黄";
dogs.color = "黑黄";
dogs.barks();
dogs.wag();
}
}
//输出结果:
//阿黄: 旺旺旺~~~
//阿黄: 摇尾巴~~~
//赛虎: 旺旺旺~~~
//赛虎: 摇尾巴~~~
new 关键字用于创建一个对象的实例 .使用 . 来访问对象中的属性和方法 .同一个类可以创建对个实例
3.2 类和对象的说明
4. this引用
4.1 为什么要有this引用
1. 形参名不小心与成员变量名相同:
public void setDay(int year, int month, int day){
year = year;
month = month;
day = day;
}
一切让this引用来揭开这层神秘的面纱。
4.2 什么是this引用
public class Date {
public int year;
public int month;
public int day;
public void setDay(int year, int month, int day){
this.year = year;
this.month = month;
this.day = day;
}
public void printDate(){
System.out.println(this.year + "/" + this.month + "/" + this.day);
}
}
public static void main(String[] args) {
Date d = new Date();
d.setDay(2020,9,15);
d.printDate();
}
4.3 this引用的特性
1. this 的类型: 对应类类型引用,即哪个对象调用就是哪个对象的引用类型2. this 只能在 " 成员方法 " 中使用3. 在 " 成员方法 " 中, this 只能引用当前对象,不能再引用其他对象4. this 是 “ 成员方法 ” 第一个隐藏的参数,编译器会自动传递,在成员方法执行时,编译器会负责将调用成员方法对象的引用传递给该成员方法,this 负责来接收。
5. 对象的构造及初始化
5.1 如何初始化对象
通过前面知识点的学习知道,在Java方法内部定义一个局部变量时,必须要初始化,否则会编译失败。
案例:
public static void main(String[] args) {
int a;
System.out.println(a);
}
// Error:(26, 28) java: 可能尚未初始化变变量
5.2 构造方法
构造方法作用:给类成员变量初始化
5.2.1 概念
public class Date {
public int year;
public int month;
public int day;
// 构造方法:
// 名字与类名相同,没有返回值类型,设置为void也不行
// 一般情况下使用public修饰
// 在创建对象时由编译器自动调用,并且在对象的生命周期内只调用一次
public Date(int year, int month, int day){
this.year = year;
this.month = month;
this.day = day;
System.out.println("Date(int,int,int)方法被调用了");
}
public void printDate(){
System.out.println(year + "-" + month + "-" + day);
}
public static void main(String[] args) {
// 此处创建了一个Date类型的对象,并没有显式调用构造方法
Date d = new Date(2021,6,9); // 输出Date(int,int,int)方法被调用了
d.printDate(); // 2021-6-9
}
}
5.2.2 特性
1. 名字必须与类名相同2. 没有返回值类型,设置为void也不行3. 创建对象时由编译器自动调用,并且在对象的生命周期内只调用一次(相当于人的出生,每个人只能出生一次)4. 构造方法可以重载(用户根据自己的需求提供不同参数的构造方法)5. 如果用户没有显式定义,编译器会生成一份默认的构造方法,生成的默认构造方法一定是无参的 。6. 构造方法中,可以通过this调用其他构造方法来简化代码
如:
public class Date {
public int year;
public int month;
public int day;
// 无参构造方法
public Date(){
this.year = 1900;
this.month = 1;
this.day = 1;
}
// 带有三个参数的构造方法
public Date(int year, int month, int day) {
this.year = year;
this.month = month;
this.day = day;
}
public void printDate(){
System.out.println(year + "-" + month + "-" + day);
}
public static void main(String[] args) {
Date d = new Date();
d.printDate();
}
}
public class Date {
public int year;
public int month;
public int day;
public void printDate(){
System.out.println(year + "-" + month + "-" + day);
}
public static void main(String[] args) {
Date d = new Date();
d.printDate();
}
}
如果注释掉 ,恢复正常
不能形成环
public Date(){
this(1900,1,1);
}
public Date(int year, int month, int day) {
this();
}
无参构造器调用三个参数的构造器,而三个参数构造器有调用无参的构造器,形成构造器的递归调用。编译报错: Error:(19, 12) java: 递归构造器调用
7. 绝大多数情况下使用public来修饰,特殊场景下会被private修饰(后序讲单例模式时会遇到)。 文章来源:https://www.toymoban.com/news/detail-847264.html
5.3 默认初始化
public class Date {
public int year;
public int month;
public int day;
public Date(int year, int month, int day) {
// 成员变量在定义时,并没有给初始值, 为什么就可以使用呢?
System.out.println(this.year);
System.out.println(this.month);
System.out.println(this.day);
}
public static void main(String[] args) {
// 此处a没有初始化,编译时报错:
// Error:(24, 28) java: 可能尚未初始化变量a
// int a;
// System.out.println(a);
Date d = new Date(2021,6,9);
}
}
文章来源地址https://www.toymoban.com/news/detail-847264.html
1. 检测对象对应的类是否加载了,如果没有加载则加载2. 为对象分配内存空间3. 处理并发安全问题
4. 初始化所分配的空间
数据类型 |
默认值
|
byte | 0 |
char |
'\u0000'
|
short | 0 |
int | 0 |
long | OL |
boolean | false |
float | 0.0f |
double | 0.0 |
reference | null |
5. 设置对象头信息 ( 关于对象内存模型后面会介绍 )
5.4 就地初始化
public class Date {
public int year = 1900;
public int month = 1;
public int day = 1;
public Date(){
}
public Date(int year, int month, int day) {
}
public static void main(String[] args) {
Date d1 = new Date(2021,6,9);
Date d2 = new Date();
}
}
到了这里,关于【JAVASE】学习类与对象的创建和实例化的文章就介绍完了。如果您还想了解更多内容,请在右上角搜索TOY模板网以前的文章或继续浏览下面的相关文章,希望大家以后多多支持TOY模板网!