일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
Tags
- html plug-in
- #2차원배열
- #다차원포인터
- #1차원배열
- #자바상속#자바이즈어#is~a
- 토큰경제
- html charset
- html multimedia
- #android activity
- #JAVASCRIPT
- relative path
- hyperledger transaction
- #3차원배열
- #C++ has~a
- #CallByAddress
- #성적관리프로그램
- html5 new tag
- #binary
- #C++ 연산자함수오버로딩
- 하이퍼레저패브릭
- html youtube
- mac terminal command
- #bubbleSort
- html object
- html video
- git flow
- html code
- html id
- border-box
- docker example
Archives
- Today
- Total
A sentimental robot
객체참조 본문
class Apple {
int count;
}
public class Day3 {
public static void main(String[] args) {
Apple a1 = new Apple();
Apple a2;
a1.count = 100;
a2 = a1; // a1를 참초한다. a2는 a1의 메모리를 공유할 수 있다. 하지만 객체는 1개밖에 없는 것
System.out.println(a2.count);
a2.count = 200;
System.out.println(a1.count);
a1 = null; // 이제 a1이란 이름으로는 사용 못하지만 a2로 사용가능
System.out.println(a2.count);
}
}
class Apple {
}
public class Day3 {
public static void main(String[] args) {
Apple a1 = new Apple();
System.out.println(a1); // Apple@5a42bbf4
Apple a2 = new Apple();
System.out.println(a2); // Apple@270421f5
Apple a3;
a3 = a1;
System.out.println(a3); // Apple@5a42bbf4
}
}
'Java' 카테고리의 다른 글
UI (0) | 2018.02.07 |
---|---|
진수에 대해서 (0) | 2018.01.09 |
다운캐스팅, Downcasting (0) | 2018.01.09 |
예외처리, try~catch (0) | 2018.01.09 |
자바에서 대표적인 예외 (0) | 2018.01.09 |