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
- Graphic
- layout
- mybatis
- Java
- struts2
- Spring
- 국제화
- 생성자
- 메서드
- 전화걸기
- Eclips
- 에러페이지
- 배열
- 오버로딩
- OGNL
- HTML
- 이클립스
- Menu
- JavaScript
- 메소드
- 기본
- Android
- paint
- 예외처리
- 클래스
- JSP
- oracle
- 안드로이드
- 어노테이션
- AWT
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