首页 > 代码库 > JAVA基础研究
JAVA基础研究
package Test; public class L3_1 { public static void main(String[] args) { C c1=new C(100); C c2=new C(100); System.out.println(c1.equals(c2)); } } class B { private int i; B(int i) { this.i=i; } public boolean equals(B b2) //面向对象-->多态 { if(this.i==b2.i) return true; else return false; } } class C extends B //面向对象-->继承 { private int j; C(int j) { super(j); //初始化父类的带参数构造函数->B(int i) this.j=j; } public boolean equals(B b2) { C c=(C)b2; //传递的参数是B类,需要强制转换 if (this.j==c.j) return true; else return false; } }
JAVA基础研究
声明:以上内容来自用户投稿及互联网公开渠道收集整理发布,本网站不拥有所有权,未作人工编辑处理,也不承担相关法律责任,若内容有误或涉及侵权可进行投诉: 投诉/举报 工作人员会在5个工作日内联系你,一经查实,本站将立刻删除涉嫌侵权内容。