주소값 비교 = 매개변수로 객체의 참조 변수를 받아서 비교하여 그 결과를 boolean 값으로 알려주는 역할, 자신이랑 같은 값이면 true 다른 값이면 false
equals는 두 참조변수에 저장된 값(주소값)이 같은지를 판단하는 기능 밖에 할수 없지만 다음과 같이 오버라이딩을 하면 실제값도 비교 가능하다.
public class Person {
long id;
@Override
public boolean equals(Object o) {
if (o != null && o instanceof Person)
return id == ((Person) o).id;
else
return false;
}
Person(long id) {
this.id = id;
}
}
public class EqualsEx2 {
public static void main(String[] args) {
Person p1 = new Person(801108111222L);
Person p2 = new Person(801108111222L);
if(p1 == p2) {
System.out.println("p1 과 p2 는 같은 사람");
} else {
System.out.println("p1과 p2 는 다른 사람");
}
// 주소값 비교
if (p1.equals(p2)) {
System.out.println("p1과 p2 같은 사람");
} else {
System.out.println("p1과 p2 다른 사람");
}
}
}
객체 자신의 해시코드를 반환한다.
객체의 주소값을 이용해서 해시코드를 만들어 반환한느 것이기 때문에 서로 다른 두객체는 다른 해시코드 값을 가질 수 없다
public class HashCodeEx1 {
public static void main(String[] args) {
String str1 = new String("abc");
String str2 = new String("abc");
System.out.println(str1.equals(str2));
System.out.println(str1.hashCode());
System.out.println(str2.hashCode());
System.out.println(System.identityHashCode(str1));
System.out.println(System.identityHashCode(str2));
}
}
인스턴스에 대한 정보를 문자열로 제공할 목적으로 정의한것
public String toString() {
return getClass().getName() + "@" + Integer.toJexString(hashCode());
}
public class CardToString {
public static void main(String[] args) {
Card c1 = new Card();
Card c2 = new Card();
System.out.println(c1.toString());
System.out.println(c2.toString());
}
}
오버라이딩을 해서 사용할 수 있다
public class Card {
String kind;
int number;
Card() {
this("SPACE", 1);
}
Card(String kind, int num) {
this.kind = kind;
this.number = num;
}
public String toString() {
return "kind : " + kind + ", number : " + number;
}
}
자신을 복제해서 새로운 인스턴스를 생성. Object 클래스에 정의 된 clone() 은 단순이 인스턴스 변수의 값만을 복사하기 때문에 참조 타입의 인스턴스 변수가 있는 클래스는 완전히 인스턴스 복제가 이루어지지 않는다.
간단한 예제)
public class Point implements Cloneable {
int x,y ;
Point (int x, int y) {
this.x = x;
this.y = y;
}
public String toString(){
return "x= " + x + ", y =" + y;
}
public Object clone() {
Object obj = null;
try {
obj = super.clone();
} catch (CloneNotSupportedException e ) {}
return obj;
}
}
clone() 을 사용하려면, 먼저 복제할 클래스가 Cloneable 인터페이스를 구현해야하고 clone() 을 오버라이딩하면서 접근 제어자를 protected에서 public 으로 변경해야한다.
public class CloneEx1 {
public static void main(String[] args) {
Point ori = new Point(3,5);
Point copy = (Point) ori.clone();
System.out.println(ori);
System.out.println(copy);
}
}
: 오버라이딩 할 대 조상 메서드의 반환 타입을 자손 클래스의 타입으로 변경을 허용하는 것
예시)
public Point clone() {
Object obj = null;
try {
obj = super.clone();
} catch ( CloneNotSupportedException e ) { }
return (Point) obj;
}
예제)
public class CloneEx2 {
public static void main(String[] args) {
int [] arr = {1,2,3,4,5};
int [] arrClone = arr.clone();
arrClone[0] = 6;
System.out.println(Arrays.toString(arr));
System.out.println(Arrays.toString(arrClone));
}
}
clone 은 단순히 객체에 저장된 값을 복제하는 얕은 복사
이다
원본이 참조하는 객체까지 복사하는 것은 깊은 복사
라고 한다.
자신이 속한 클래스의 Class 객체를 반환 메서드이다.
Class 객체는 클래스의 모든 정보를 담고 있으며 클래스당 1개만 존하고 클래스 파일이 클래스 로더에 의해서 메모리에 올라갈 때 자동 생성된다. 먼저 기존에 생성된 클래스 객체가 메모리에 있는지 확인하고 있으면 객체의 참조를 반환 , 없으면 클래스 패스에 지정된 경로를 따라스 클래스 파일 찾음. 못찾으면 ClassNotFoundException 발생
예시)
public class ClassEx1 {
public static void main(String[] args) throws Exception{
Card c = new Card("HEART", 3);
Card c2 = Card.class.newInstance();
Class cObj = c.getClass(); ㅌ
System.out.println(c);
System.out.println(c2);
System.out.println(cObj.getName());
System.out.println(cObj.toGenericString());
System.out.println(cObj.toString());
}
}
자바의 정석⭐️⭐️⭐️⭐️⭐️