JAVA 노트 - this 키워드
this 키워드
기본 역할
현재 방법 내부에서 현재 대상의 인용을 얻습니다.인용에서 호출 방법은
this.method()
라는 형식으로 설명할 필요가 없다. 왜냐하면 컴파일러가 자동으로 추가되기 때문이다.필요:
java public class Leaf{ int i = 0; Leaf increment(){ i++; return this; // , } }
class Peeler{
static Apple peel(Apple apple){
//remove pell
return apple;
}
}
class Apple{
Apple getPeeled(){
return Peeler.peel(this); // this ,
}
}
2. 구조기에서 구조기를 호출한다
this
키워드가 필요합니다. class CallConstructor(){
CallConstructor(int i){
System.out.println(i);
}
CallConstructor(String str){
this(6); //
System.out.println(str);
//! this(6); // ,
}
}
class CallConstructor(){
CallConstructor(int i){
System.out.println(i);
}
CallConstructor(double n){
System.out.println(n);
}
CallConstructor(String str){
this(6); //
//! this(1.0); // ,
// ,
System.out.println(str);
}
}
class CallConstructor(){
CallConstructor(int i){
System.out.println(i);
}
CallConstructor(double n){
System.out.println(n);
}
void CommMethod(){
//! this(6); // !
System.out.println("Common Method");
}
}
3. static의 의미
static
말 그대로 정적이라는 뜻이다.이 키워드는 앞으로도 계속 탐구할 것이다.static
은this방법이 없다.static
비정상적인 방법을 사용할 수 없고 반대로 사용할 수 있다.이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
다양한 언어의 JSONJSON은 Javascript 표기법을 사용하여 데이터 구조를 레이아웃하는 데이터 형식입니다. 그러나 Javascript가 코드에서 이러한 구조를 나타낼 수 있는 유일한 언어는 아닙니다. 저는 일반적으로 '객체'{}...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.