实验八:接口与实现接口的类

博客分享了关于接口虚函数的心得体会,指出接口的虚函数只有在类里面实现才不会出错,否则会一直提示错误,还给出了转载来源。

摘要生成于 C知道 ,由 DeepSeek-R1 满血版支持, 前往体验 >

一、源代码

package baijh;

public class ba {

    public static void main(String[] args) {
        // TODO Auto-generated method stub
        
        
        yuanzhui a=new yuanzhui(1,2,3);
        yuanzhui b=new yuanzhui(4,5,6);
        System.out.println(a.Area());
        System.out.println(b.Area());
        System.out.println(a.volume());
        System.out.println(b.volume());
        System.out.println("体积较大的是:"+Math.max(a.volume(), b.volume()));
        }
        }
        class yuanzhui implements Volume,Area{
        protected double r;
        protected double l;
        protected double h;
        public yuanzhui(double r,double l,double h){
        this.r=r;
        this.l=l;
        this.h=h;
        }
        public double volume(){
        return Math.PI*Math.pow(r,2)*h/3;
        }
        public double Area(){
        return Math.PI*this.r*this.r+this.r*this.l;

        }
        }
        interface Volume{
        public double volume();
        }
        interface Area{
        public double Area();
    }

二、心得体会

接口的虚函数只有在类里面实现了才不会出错,不然会一直提醒你有错误

转载于:https://www.cnblogs.com/bjh5/p/10896402.html

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

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

抵扣说明:

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

余额充值