码迷,mamicode.com
首页 > 其他好文 > 详细

继承练习

时间:2017-09-18 22:13:48      阅读:110      评论:0      收藏:0      [点我收藏+]

标签:end   继承   blog   turn   ges   new   ima   .com   image   

package day16;

class A{
int f(int x,int y){
return x+y;

}
}

class B extends A{//B继承A并重写A 中的方法
double f(double x,double y){
return x*y;
}
}
public class AnonymityClassTestR {

public static void main(String[] args) {
B b=new B();
A a = new A();
System.out.println(a.f(4, 5));
System.out.println(b.f(4,5));
System.out.println(b.f(4.0, 5.0));
}
}

输出的结果:

技术分享

继承练习

标签:end   继承   blog   turn   ges   new   ima   .com   image   

原文地址:http://www.cnblogs.com/bigswallow/p/7545087.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!