자바키워드 (1) 썸네일형 리스트형 [초급 JAVA]자바 this,static,final 지정예약어 - this & this() this,static,final 지정예약어 - this & this()By Commin .November 29, 2016 ReservedWord_this.classpackage reserved_word; public class ReservedWord_this {//this 는 '자기자신의 객체를 참조하는 예약어' 입니다.//즉 , 클래스 내부에서 자신의 클래스를 지칭하는 객체라는 뜻입니다.String name="commin's blog";String address="Seoul";ReservedWord_this(String name){System.out.println(name);//결과: commin//ReservedWord_this 의 생성자의 파라미터도 String의 name이라는 변수이고//전영변수로.. 이전 1 다음