博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
实验八
阅读量:5875 次
发布时间:2019-06-19

本文共 989 字,大约阅读时间需要 3 分钟。

一.程序代码

 

public class yuanzhui extends Rectangle implements Area,Volume {

 

private double radius; 

 

private double length;

 

private double height;

 

public yuanzhui(double radius,double length,double height)

 

{

 

this.radius = radius;

 

this.length = length;

 

this.height = height;

 

}

 

public yuanzhui()

 

{

 

this(0,0,0);

 

}

 

public double area() //计算圆锥的表面积,实现Area接口中的抽象方法

 

{

 

return Math.PI*this.radius*this.length+Math.PI*this.radius* this.radius ;

 

}

 

public double volume() //计算圆锥的体积,实现Volume接口中的抽象方法

 

{

 

return Math.PI * this.radius * this.radius * this.height/3;

 

}

 

public String toString()

 

{

 

return "一个圆锥,半径"+this.radius+",高"+this.height+",斜边,"+this.length+"表面积为"+this.area()+",体积为"+this.volume();

 

}

 

public static void main(String args[])

 

{

 

System.out.println(new yuanzhui(10,5,3).toString());

 

}

 

}

 

二.实验心得

        

        通过本次实验的调试,使我清楚的认识到接口在JAVA编程语言中是一个抽象类型,是抽象方法的集合,接口通常以interface来声明。一个类通过继承接口的方式从而来继承接口的抽象方法。并且接口并不是类,编写接口的方式和类很相似,但是它们属于不同的概念。类描述对象的属性和方法。接口则包含类要实现的方法。

转载于:https://www.cnblogs.com/java199-cxm/p/10892023.html

你可能感兴趣的文章
一组简单一点的题目(六) B - 小兔的棋盘
查看>>
流的剖析和实现
查看>>
vue 2.0 购物车小球抛物线
查看>>
一直以来都没直视的轮播
查看>>
canvas系列教程04-柱状图项目2
查看>>
高性能迷你React框架 anu1.2 发布,支持React16的三大特性
查看>>
Python调用有道词典翻译
查看>>
PHP7.2、PHP7.1 性能对比
查看>>
css实现边框动画效果
查看>>
java降低竞争锁的一些方法
查看>>
Python pip
查看>>
使用Topo项目管理软件做代码同行检视
查看>>
【mongoDB查询进阶】聚合管道(四) -- 累加器(Accumulators)
查看>>
Laravel 用户多字段认证优雅解决方案
查看>>
命名管道的阻塞和非阻塞模式的初步探讨
查看>>
css系列之line-height 与 vertical-align
查看>>
初次接触java
查看>>
React 高阶组件浅析
查看>>
MySQL主从复制原理探索
查看>>
? extends T与? super T
查看>>