java中抽象类和抽象方法到底什么关系?给个例子吧

 我来答
爱吃的肸子
2017-06-03 · TA获得超过2649个赞
知道大有可为答主
回答量:1786
采纳率:54%
帮助的人:295万
展开全部
抽象类和抽象方法什么关系?抽象类中可能有抽象方法,也可能没有抽象方法。那位说,就跟没说一样,那抽象类和抽象方法都叫抽象,他们必定有关系,那关系是什么呢?如果一个类中有抽象方法,它必须得是抽象类。

An abstract class may have no abstract method,such as the following class Car. 马
克- t o --wi n: At this time,the only point and the meaning of
abstract class is that we can not instantiated the class, because it is
abstract class.Why an abstract class can have a nonabstract method?
what is the point? also in logic, think over the following example, car
is a bit abstract in that you dont' know exactly whether it is a truck
or a jeep or a limersine, 马克-to-win:so it is defined as a abstract
class. but no matter whether it is truck,jep, or limersine, it
definitely use steering wheel. so its steer() method is an ordinary method instead of an abstract method. ) Abstract class can’t be instantiated.

例1.7.1
abstract class Nothing {//里面有方法也照样声明为abstract
void nothing() {
System.out.println("nothing");
}
}
abstract class VehMark_to_win {
abstract void steer();
abstract void move();
}
class Bike extends VehMark_to_win {//Bike不是抽象的, 所以必须得全部实现abstract方法
。。。。。。。。。。。。。。。详情网上找“马克-to-win”,参考他的网站或他的百度空间:java第三章的内容
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式