博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java abstract抽象类学习
阅读量:5737 次
发布时间:2019-06-18

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

java抽象类

java abstract class
有时候,我们需要用到抽象类。比如我们想买水果,但是不确定买的是苹果还是香蕉
Sometimes, we want to abstract a class.For example, We want buy some fruits,but we are not sure we buy apple or pear.
我们抽象出一个类叫水果
Now we can abstract a class named Fruit
水果就作为了一个抽象类和一个父亲类
Fruit is a abstract class and it is a father class.
苹果和梨就作为子类
Apples and pears fruit is child class
注意:我们不能获得一个抽象类的对象 new Fruit() 会发生错误。
note: can not get a new abstract class new Fruit() is wrong

abstract father classpublic abstract class Fruit {	public String getColor(String color){		return color;	}	public String getWeight(String weight){		return weight;	}}

child class

public class Apple extends Fruit {
public String getColor(String color){
System.out.println(‘‘color is ‘‘ + color); return color; } public String getWeight(String weight){
System.out.println(‘‘weight is ‘‘ + weight); return weight; } public static void main(String[] args){
Fruit f = new Apple(); //Fruit f = new Fruit(); can not get a new abstract class new Fruit() is wrong f.getColor(‘‘red‘‘); } }

首发于 -

posted on
2012-10-23 11:26 阅读(
...) 评论(
...)

转载于:https://www.cnblogs.com/yuexiaosheng/archive/2012/10/23/2735190.html

你可能感兴趣的文章
大快网站:如何选择正确的hadoop版本
查看>>
经过这5大阶段,你离Java程序员就不远了!
查看>>
IntelliJ IDEA 连接数据库详细过程
查看>>
thymeleaf 学习笔记-基础篇
查看>>
PHP-X开发扩展
查看>>
android学习笔记——onSaveInstanceState的使用
查看>>
工作中如何做好技术积累
查看>>
怎么用sysLinux做U盘双PE+DOS??
查看>>
Spring Transactional
查看>>
shell脚本实例
查看>>
我的友情链接
查看>>
Windows Phone 7 隔离存储空间资源管理器
查看>>
Microsoft Excel 2000/2003修复工具
查看>>
apache安装报错undefined reference ssl
查看>>
关于爱情只有一句忠告
查看>>
CentOS 7下安装部署Oracle11g图文教程
查看>>
F#初学笔记06
查看>>
实战:将企业域名解析委派给企业DNS服务器
查看>>
在Lync 2013环境部署Office Web Apps
查看>>
微软大会Ignite,你准备好了么?
查看>>