沈师PTA--JAVA程序设计-第4章习题集(1)--填空题答案版2021-11-11

沈师PTA--JAVA程序设计-第4章习题集(1)--填空题答案版2021-11-11,第1张

沈师PTA--JAVA程序设计-第4章习题集(1)--填空题答案版2021-11-11

R4-1

已知代码
下面展示一些 内联代码片。

class MyDate{
  int year;
  int month;
  int day;
  MyDate(int year,int month,int day){
     this.year=year;
     this.month=month;
     this.day=day;
  }
}
public class Main{
  public static void main(String args[]){
     MyDate md1=new MyDate(2009,2,10);
     MyDate md2=new MyDate(2009,2,10);
     if(md1==md2)
       System.out.println("md1==md2");
     else
       System.out.println("md1!=md2");
     if(md1.equals(md2))
       System.out.println("md1 is equla to md2");
     else
       System.out.println("md1 is not equal to md2");
  }
}

运行上述代码,写出其运行结果:

md1!=md2
md1 is not equal to md2

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/zaji/5437898.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-11
下一篇 2022-12-11

发表评论

登录后才能评论

评论列表(0条)

保存