JAVA 공부하기 91.
this의 사용
public class ThisTest4
{
static String str1;
ThisTest4()
{ this("jsun"); } // 생성자에서 생성자 호출
ThisTest4(String v1)
{ str1="hello"+ v1; }
public static void main(String[] args)
{
ThisTest4 obj1= new ThisTest4 ();
System.out.println(obj1.str1);
}
}
public class ThisTest5
{
int Q1=4;
public static void main(String[] args)
{
ThisTest5 obj1=new ThisTest5();
obj1.method1(6);
}
public void method1(int v1)
{
this.Q1 +=v1;
System.out.println(this.Q1); // this.변수
}
}
'자바 > JAVA...Spring' 카테고리의 다른 글
JAVA공부하기 93. 추상클래스 / 추상메서드 (0) | 2015.05.28 |
---|---|
JAVA 공부하기 92. super의 사용형식 /예제 (0) | 2015.05.28 |
JAVA공부하기 90. this의 사용 (0) | 2015.05.27 |
JAVA공부하기 89. this (0) | 2015.05.27 |
JAVA공부하기 88. 클래스 추상화와 상속 실습 (0) | 2015.05.27 |