Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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
- 기본
- Android
- JavaScript
- 클래스
- 생성자
- 예외처리
- Java
- Spring
- JSP
- 메서드
- Menu
- 메소드
- paint
- mybatis
- 국제화
- 에러페이지
- 안드로이드
- layout
- 이클립스
- struts2
- 전화걸기
- 어노테이션
- 배열
- AWT
- OGNL
- HTML
- Graphic
- Eclips
- oracle
- 오버로딩
Archives
- Today
- Total
목록참조 호출 (1)
note
참조 호출 call by reference
class MyDate{//참조 호출 call by reference int year=2006; int month=4; int day=1; } class RefMethod{ void changeDate(MyDate t){ t.year=2007; t.month=7; t.day=19; } } public class MethodTest09 { public static void main(String[] args){ RefMethod rm = new RefMethod(); MyDate d=new MyDate(); //각 각 클래스 메모리에 올리기 System.out.println("함수 호출전 d-> "+d.year+"/" +d.month+ "/" +d.day); rm.changeDate(d); //주소를 MyD..
자바/생성자
2011. 12. 16. 11:35