形式参数问题

1. 具体类:实际参数传递应该创建当前具体类对象
 

class Student{
    public void study(){
        System.out.println("好好学习,天天向上");
}
class StudentDemo{
    public void method(Student student){
        student.study() ;
    }
}

//测试类
public class ArgsDemo1 {
    public static void main(String[] args) {
    StudentDemo sd = new StudentDemo() ;
    Student s = new Student() ;
    sd.method(s);
    }
}

2.抽象类:实际参数需要传递应该创建当前抽象类的子类对象(抽象类多态)

//抽象类
abstract  class Person{
    public abstract  void work() ;
}

//抽象类的子类
class Worker extends Person{
    @Override
    public void work() {
        System.out.println("好好学习,天天向上");
    }
}
class PersonDemo{
    public void show(Person person){
        person.work() ;
    }
}
//测试类
public class ArgsDemo2 {
    public static void main(String[] args) {

        PersonDemo pd = new PersonDemo() ;
        Person p = new Worker() ;
        pd.show(p);

        pd.show(new Worker());
    }

3.接口
 

//接口
interface  Study{
    void study() ;
}


class StudyDemo{
    public void function(Study study){ 
        study.study();
    }
}
//定义除接口的子实现类
class StudyImpl implements  Study{

    @Override
    public void study() {
        System.out.println("好好学习,天天向上");
    }
}
//测试类
public class ArgsDemo3 {
    public static void main(String[] args) {
        
        StudyDemo ld = new StudyDemo() ;

        //接口多态
        Study s = new StudyImpl() ;
        ld.function(s);
       
    }
}

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值