对象比较
Posted 竹之轩
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了对象比较相关的知识,希望对你有一定的参考价值。
对象比较就是两个对象的属性进行比较
对象比较的实现形式一
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("")
}
}
}
以上是关于对象比较的主要内容,如果未能解决你的问题,请参考以下文章