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 |
Tags
- Spring
- Java
- 기본
- HTML
- 클래스
- 안드로이드
- Eclips
- paint
- JSP
- 배열
- oracle
- struts2
- Android
- 전화걸기
- 오버로딩
- 이클립스
- Menu
- 에러페이지
- 국제화
- 메소드
- 생성자
- OGNL
- AWT
- JavaScript
- Graphic
- 메서드
- 예외처리
- mybatis
- 어노테이션
- layout
Archives
- Today
- Total
note
생성자 기본 본문
public class ThisTest2 {
int a;
int b;
public ThisTest2(int a,int b){
//생성자 또는 메소드영역에서
//멤버변수와 지역변수의 명칭이 같을때는
//지역변수가 우선
//this.a 는 위에있는 a이고 a는 int a이다
//this는 멤버변수 호출이다
this.a=a;
this.b=b;
//멤버변수 지역변수
this.print();
}
public void print(){
System.out.println(a + "," + b);
}
public static void main(String[] args){
ThisTest2 t = new ThisTest2(4,5);
}
}
4,5