Day 4:2021.3.4
方法回顾
方法的定义
package com.hong.Day004;
//Demo01 类
public class Demo01 {
//main 方法
public static void main(String[] args) {
}
public static String sayHello(){
return "hello,world";
}
public static int max(int a ,int b){
return a > b ? a : b;
}
}
方法的调用
package com.hong.Day004;
public class Demo02 {
public static void main(String[] args) {
//静态方法 static
Student.say();//方法中加了static
//非静态方法
// 实例化这个类 new
// 对象类型 对象名 = 对象值
Student student = new Student();
Student.say();
}
}
面向对象编程(oop)
本质:以类的方式组织代码 ,以对象的方式组织(封装)数据
面向对象的关键字:new
类与对象的创建
package com.hong.Day004.Demo04;
//一个项目应该只存在一个main方法
public class Application {
public static void main(String[] args) {
//类:抽象的,实例化
//类实例化后会返回一个自己的对象
Student student = new Student();
Student xiaoming = new Student();
Student xiaohong = new Student();
xiaoming.name = "xiaoming";
xiaoming.age = 3;
System.out.println(xiaoming.name);
System.out.println(xiaoming.age);
}
}
package com.hong.Day004.Demo04;
//学生类
public class Student {
//属性:字段
String name;//默认:null
int age;//默认:0
//方法
public void study(){
System.out.println(this.name+"在学习");
}
}
构造方法
构造器:
-
和类名相同
-
没有返回值
作用:
-
new 本质在调用构造方法
-
初始化对象的值
注意点:
- 定义了有参构造之后,如果想使用无参构造,显示的定义一个无参构造
快捷键:
- Alt + Insert (Alt + Shift + 0)
- this. (调用本类中的对象)
package com.hong.Day004.Demo04;
public class Person {
//一个类型什么都不写,它也会存在一个方法
//显示的定义构造器
String name;
int age;
//实例化初始值
//1.使用new关键字,必须要有构造器
//2.构造器一般用来初始化器
public Person(){
//this.name = "hongchen";
}
//有参构造:一旦定义了有参构造,无参构造必须显示定义
public Person(String name){
this.name = name;
}
public Person(String name, int age) {
this.name = name;
this.age = age;
}
//alt + insert (alt + shift + 0)
}
创建对象内存分析
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-18ZtXyO5-1614861154007)(C:\Users\asus\AppData\Roaming\Typora\typora-user-images\image-20210304110101288.png)]
package com.hong.Day004.Demo05;
public class Demo05 {
public static void main(String[] args) {
Pet dog = new Pet();
dog.name = "旺财";
dog.age = 3;
dog.shou();
System.out.println(dog.name);
System.out.println(dog.age);
}
}
package com.hong.Day004.Demo05;
public class Pet {
String name;
int age;
//无参构造
public void shou(){
System.out.println("叫了一声");
}
}
简单小结类与对象
package com.hong.Day004.Demo06;
public class Demo06 {
public static void main(String[] args) {
/*
1.类与对象
类是一个模板:抽象,对象是一个具体的实例
2.方法
定义、调用
3.对应的引用
引用类型: 基本类型(8)
对象是通过引用来操作的:栈-->堆
4.属性:字段field 成员变量
默认初始化:
数字:0 0.0
char:u0000
boolean: false
引用: null
修饰符 属性类型 属性名 = 属性值
5.对象的创建和使用
必须使用new 关键字创造对象,构造器 Person kuangshen = new Person();
对象的属性 kuangshen.name
对象的方法 kuangshen.sleep()
6.类:
静态的属性 属性
动态的行为 方法
7.封装、继承、多态
*/
}
}
封装、继承、多态
封装
“高内聚,低耦合”。高内聚就是类的内部数据操作细节自己完成,不允许外部干涉;低耦合仅暴露少量的方法给外部使用。
属性私有,get/set(alt + insert)
package com.hong.Day004.Demo06;
/*
1.提高程序的安全性,保护数据
2.隐藏代码的时限细节
3.统一借口
4.系统可维护增加
*/
public class Demo07 {
public static void main(String[] args) {
Student s1 = new Student();
s1.getName();
s1.setName("秦");
System.out.println(s1.getName());
s1.setAge(999);//不合法的
System.out.println(s1.getAge());
}
}
package com.hong.Day004.Demo06;
//类 private:私有
public class Student {
//属性私有
private String name;//名字
private int id;//学号
private char sex;//性别
private int age;//年龄
//提供一些可以操作这个属性的方法
//提供一些public的 get、set方法
//get 获得这个数据
public String getName(){
return this.name;
}
//set 给这个数据设置值
public void setName(String name){
this.name = name;
}
//alt + insert (alt+shift+0)
public int getAge() {
return age;
}
public void setAge(int age) {
if (age<=120 && age>=0) {
this.age = age;
}else{
this.age = 3;
//System.out.println("不合法");
}
}
}
继承
继承的本质是对某一批类的抽象,从而实现对现实世界更好的建模。
关键词:extends 扩展
快捷键:ctrl + h (查看继承树)
ctrl + f (查找)
ctrl + x (删除行)
object类
主程序:
package com.hong.Day004.Demo07;
public class Demo07 {
public static void main(String[] args) {
Student student = new Student();
student.say();
Person person = new Person();
}
}
Person类(父类):
package com.hong.Day004.Demo07;
//在java中,所有的类,都默认直接或者间接继承object类
//Person 人 :父类
public class Person {
//public 公共的
//protected 受保护的
//default 默认的
//private 私有的
private int money = 10_0000_0000;
public void say(){
System.out.println("说了一句话");
}
public int getMoney() {
return money;
}
public void setMoney(int money) {
this.money = money;
}
}
Student类(子类):
package com.hong.Day004.Demo07;
//学生 is 人 :子类,派生类
//子类继承了父类,就会拥有父类的全部方法
public class Student extends Person{
}
Teacher(子类):
package com.hong.Day004.Demo07;
//老师 is 人 :子类,派生类
public class Teacher extends Person{
}
Super
注意点:
-
super调用父类的构造方法,必须在构造方法的第一个
-
super 必须只能出现在子类的方法或构造方法中
-
super和this不能同时调用构造方法
VS this:
-
代表的对象不同
this :本身调用者的这个对象
super:代表父类对象的应用
-
前提
this:没有继承也可以使用
super:只能在继承条件才可以使用
-
构造方法
this():本类的构造
super():父类的构造
主程序:
package com.hong.Day004.Demo07;
public class Demo07 {
public static void main(String[] args) {
Student student = new Student();
//Person person = new Person();
//student.test("秦疆");
//student.test1();
}
}
父类:
package com.hong.Day004.Demo07;
//在java中,所有的类,都默认直接或者间接继承object类
//Person 人 :父类
public class Person {
public Person() {
System.out.println("Person无参执行了");
}
protected String name = "kuangshen";
//私有的东西无法被继承
public void print(){
System.out.println("Person");
}
}
子类:
package com.hong.Day004.Demo07;
//学生 is 人 :子类,派生类
//子类继承了父类,就会拥有父类的全部方法
public class Student extends Person{
public Student() {
//影藏代码,默认调用了父类的无参构造
super();//调用父类的构造器,必须在子类构造器的第一行
System.out.println("Student无参执行了");
}
private String name = "qingjiang";
public void test(String name){
System.out.println(name);//name
System.out.println(this.name);//qingjiang
System.out.println(super.name);//kuangshen
}
public void print(){
System.out.println("Student");
}
public void test1(){
print();//Student
this.print();//Student
super.print();//Person
}
}
方法重写
重写:需要有继承关系,子类重写父类的方法。
-
方法名必须相同
-
参数列表必须相同
-
修饰符:范围可以扩大,但是不能缩小:public>proteced>default>private
-
抛出的异常:范围,可以被缩小,但不能被扩大:ClassNotFoundException --> Exception(大)
-
重写,子类的方法与父类必须要一致,方法体不同
-
为什么需要重写:
-
父类的功能子类不一定需要,或者不一定满足
-
快捷键:Alt + Insert :override;
-
主程序:
package com.hong.Day004.Demo07;
public class AA {
//静态的方法个非静态的方法区别很大
//重写只和非静态方法
//非静态:重写
public static void main(String[] args) {
//方法的调用只和左边的定义的数据类型有关
A a = new A();
a.test();//A=>test
//父类的引用指向了子类,子类的引用不能指向父类
B b = new A();//子类重写了父类的方法
b.test();//A=>test(重写之后) B=>test(重写之前)
}
}
父类:
package com.hong.Day004.Demo07;
public class B {
public void test(){
System.out.println("B=>test");
}
}
子类:
package com.hong.Day004.Demo07;
public class A extends B{
//Override:重写
@Override //注解:有功能的注释
public void test() {
System.out.println("A=>test");
}
}
多态
动态编译:类型:可扩展性
快捷键:ctrl + shift +空格 两次 (强制转换可用类型)
注意事项:
-
多态是方法的多态,属性没有多态
-
父类和子类,有联系 类型转换异常 ClassCastException
-
存在条件:继承关系,方法需要重写,父类引用指向子类对象
不能被重写的: static(方法,静态的,属于类,不属于实例) final(常量) private(方法,私有的)
关键词:instanceof 类型转换
主程序:
package com.hong.Day004.Demo08;
public class App {
public static void main(String[] args) {
//一个对象的实际类型是确定的
//Student student = new Student();
//Person person = new Person();
//可以指向的引用类型就不确定了
//Student 能调用的方法都是自己的或继承的
Student s1 = new Student();
//Person 可以指向子类,但是不能调用子类独有的方法
Person s2 = new Student();//父类的引用指向子类
//对象能执行哪些方法主要看对象左边的类型和右边关系不大
//
s1.run();
s2.run();//子类重写了父类的方法,执行子类的方法
s1.eat();
//s2.eat;父类中没有eat方法
//((Student) s2).eat();//强制转换
}
}
父类:
package com.hong.Day004.Demo08;
public class Person {
public void run(){
System.out.println("run");
}
}
子类:
package com.hong.Day004.Demo08;
public class Student extends Person{
@Override
public void run() {
System.out.println("son");
}
public void eat(){
System.out.println("eat");
}
}
类型转换
instanceof 能不能编译取决于X和Y是否存在父子关系
package com.hong.Day004.Demo08;
public class App {
public static void main(String[] args) {
//System.out.println(X instanceof Y); 能不能编译取决于X和Y是否存在父子关系
Object object = new Student();
System.out.println(object instanceof Student);//ture
System.out.println(object instanceof Person);//ture
System.out.println(object instanceof Object);//ture
System.out.println(object instanceof Teacher);//False
System.out.println(object instanceof String);//False
System.out.println("==================================");
Person person = new Student();
System.out.println(person instanceof Student);//ture
System.out.println(person instanceof Person);//ture
System.out.println(person instanceof Object);//ture
System.out.println(person instanceof Teacher);//False
//System.out.println(person instanceof String);//编译就报错
System.out.println("==================================");
Student student = new Student();
System.out.println(student instanceof Student);//ture
System.out.println(student instanceof Person);//ture
System.out.println(student instanceof Object);//ture
//System.out.println(student instanceof Teacher);//编译就报错
//System.out.println(person instanceof String);//编译就报错
}
}
父类引用指向子类的对象
把子类转换为父类,向上转型
把父类转换为子类,向下转型;(需要强制转换,可能会丢失方法)
减少重复的代码(抽象)
主程序:
package com.hong.Day004.Demo08;
public class App {
public static void main(String[] args) {
//类型之间的转换:父 子
//Person student = new Student();
//student.go 无法使用由于Person中没有go方法
//student 将这个对象转换为Student类型
//((Student) student).go();
//子类转父类,可能丢失自己本来的一些方法
Student student = new Student();
student.go();
Person person = student;
//person.go
}
}
Static
静态、非静态的变量与方法
package com.hong.Day004.Demo09;
public class Student {
private static int age;//静态的变量
private double score;//非静态的变量
public void run(){
}
public static void go(){
}
public static void main(String[] args) {
//非静态方法能够调用静态方法,静态方法也能够调用静态方法,但是不能调用非静态方法
Student.go();
new Student().run();
//Student s1 = new Student();
//System.out.println(Student.age);
//System.out.println(s1.age);
//System.out.println(s1.score);
}
}
匿名代码块,静态代码块,构造代码
package com.hong.Day004.Demo09;
public class Person {
{
System.out.println("匿名代码块");
//2.代码块(匿名代码块):可以附一些初始值
}
static {
System.out.println("静态代码块");
//1.静态代码块 只执行一次
}
public Person(){
//3.构造方法
System.out.println("构造方法");
}
public static void main(String[] args) {
Person person1 = new Person();
System.out.println("================");
Person person2 = new Person();
}
}
静态导入包
package com.hong.Day004.Demo09;
//静态导入包
import static java.lang.Math.random;
public class Text {
public static void main(String[] args) {
System.out.println(random());
}
}
抽象类
abstract修饰符可以用来修饰方法也可以用来修饰类,如果修饰方法那该方法就是抽象方法;如果修饰类那该类就是抽象类。
抽象类中可以没有抽象方法,但是有抽象方法的类一定要声明为抽象类。
抽象类,不能使用new关键字来创建对象,它是用来让子类继承的。
抽象方法,只有方法的声明,没有方法的实现,它是用来让子类实现的。
子类继承抽象类,那么就不虚要实现抽象类没有实现的抽象方法,否则该子类也要声明为抽象类。
主程序:
package com.hong.Day004.Demo10;
//abstract 抽象类;类 extends 单继承 (接口可以多继承)
public abstract class Demo01 {
//约束~有人帮我们实现
//abstract,抽象方法,只有名字,没有实现
public abstract void doSomething();
//1.不能new这个抽象类,只能靠子类去实现他;约束
//2.抽象类中可以写普通方法
//3.抽象方法必须在抽象类中
}
子类:
package com.hong.Day004.Demo10;
//抽象类的所有方法,继承了它的子类,都要实现它的抽象方法
public class A extends Demo01{
@Override
public void doSomething() {
}
}
接口
普通类:只有具体的实现
抽象类:只有具体实现和规范(抽象方法)都有
接口:只有规范
声明接口的关键字是:interface
接口的作用:
-
约束
-
定义一些方法,让不同的人实现
-
public abstract //方法修饰
-
public static final //静态常量
-
接口不能被实例化,接口中没有构造方法
-
可以实现多可:implements
-
实现接口必须要重写接口中的方法
主程序
package com.hong.Day004.Demo11;
//类可以实现接口: implements
//实现了接口的类,必须要实现接口中的方法
//侧面实现了多继承
public class UserImpl implements User , Time {
@Override
public void add(String name) {
}
@Override
public void delete(String name) {
}
@Override
public void update(String name) {
}
@Override
public void query(String name) {
}
@Override
public void timer() {
}
}
User:
package com.hong.Day004.Demo11;
//定义的关键字:interface,接口都要有实现类
public interface User {
//属性默认常理
int AGE = 99;
//接口中的所有定义其实都是抽象的 public
void add(String name);
void delete(String name);
void update(String name);
void query(String name);
}
Time:
package com.hong.Day004.Demo11;
public interface Time {
void timer();
}
内部类
内部类就是在一个类的内部再定义一个类,比如A类中定义一个B类,那么B类相对A类来说就成为内部类,而A类就是B类的外部类。
一个java类中可以有多个class类,但只能有一个public class类
成员内部类:
主程序:
package com.hong.Day004.Demo12;
public class APP {
public static void main(String[] args) {
//new
Outer outer = new Outer();
//通过这个外部类来实例化内部类
Outer.Inner inner = outer.new Inner();
inner.in();
inner.getID();
}
}
类:
package com.hong.Day004.Demo12;
public class Outer {
private int id = 10;
public void out(){
System.out.println("这是外部类的方法");
}
public class Inner{
public void in(){
System.out.println("这是内部类的方法");
}
//获得外部类的私有属性
public void getID(){
System.out.println(id);
}
}
}
局部内部类
package com.hong.Day004.Demo12;
public class Outer {
//局部内部类
public void method(){
class Inner{
public void in(){
}
}
}
}
异常机制(Exception)
[外链图片转存失败,源站可能有防盗链机制,建议将图片保存下来直接上传(img-8kcaOJW0-1614861154009)(C:\Users\asus\AppData\Roaming\Typora\typora-user-images\image-20210304162607704.png)]
抓住抛出异常
异常处理的五个关键字:
try、catch、finally、throw、throws
快捷键:ctrl + alt + T
package com.hong.Day004.Demo13;
public class Test {
public static void main(String[] args) {
int a = 1;
int b = 0;
try {
new Test().test(1,0);
} catch (ArithmeticException e) {
e.printStackTrace();
}
//快捷键:ctrl + alt + T
try {//try监控区域
System.out.println(a/b);
}catch (ArithmeticException e){//catch 捕获异常(可以加多个catch,且从小到大)
System.out.println("程序出现异常,b不能为0");
}finally {//处理善后工作
System.out.println("finally");
}
//finally可以不要, 假设IO,资源,关闭的操作放在finall中
}
//假设这个方法中,处理不了这个异常,在方法上抛出异常
public void test(int a,int b) throws ArithmeticException{
if (b==0){
throw new ArithmeticException();//主动抛出异常,一般在方法中使用
}
System.out.println(a/b);
}
}
异常处理的五个关键字:
try、catch、finally、throw、throws
快捷键:ctrl + alt + T
package com.hong.Day004.Demo13;
public class Test {
public static void main(String[] args) {
int a = 1;
int b = 0;
try {
new Test().test(1,0);
} catch (ArithmeticException e) {
e.printStackTrace();
}
//快捷键:ctrl + alt + T
try {//try监控区域
System.out.println(a/b);
}catch (ArithmeticException e){//catch 捕获异常(可以加多个catch,且从小到大)
System.out.println("程序出现异常,b不能为0");
}finally {//处理善后工作
System.out.println("finally");
}
//finally可以不要, 假设IO,资源,关闭的操作放在finall中
}
//假设这个方法中,处理不了这个异常,在方法上抛出异常
public void test(int a,int b) throws ArithmeticException{
if (b==0){
throw new ArithmeticException();//主动抛出异常,一般在方法中使用
}
System.out.println(a/b);
}
}