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

对象比较

时间:2017-09-03 13:28:10      阅读:151      评论:0      收藏:0      [点我收藏+]

标签:nbsp   需要   tde   属性   equal   als   class   person   print   

对象比较就是两个对象的属性进行比较

对象比较的实现形式一

class Person

{

  private String name ;

  private int age ;

  public Person(String name , int age)

  {

   this.name = name;

   this.age = age; 

  }

  public String getName() {

    return this.name;

  }

  

public int  getAge() {

    return this.age;

  }

}

public class Testdemo{

  public static void main(String args[]){

  Person perA = new Person("张三",20);

  Person perB= new Person("张三",20);

  System.out.println(perA == perB);       //需要根据对象拥有的属性信息来进行比对

  if (perA.getName().equals(perB.getName()) && perA.getAge() == perB.getAge()) {

    System.out.println("")

  }

  }  

}

对象比较

标签:nbsp   需要   tde   属性   equal   als   class   person   print   

原文地址:http://www.cnblogs.com/123talents/p/7469175.html

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