예를 들어서
java 파일에서

import android.app.Activity;
import android.os.Bundle;
import android.wiget.TextView;

public class 테스트 extends Activity {
        @Override
        public void onCreate(Bundle savedInstanceState) {
                super.onCreate(savedInstanceState);
                TextView 안녕 = new TextView(this);  // <- 이거 왜 this가 들어갔는데, 인스턴스가 왜 잘~ 작동되는거에요?
                 ......
}


this 가 고작 테스트잖아요 근대 뭐가있다고 this를 파라미터로 받는거죠?????

문제는 이런게 한두개가 아니더라고요!!  동작은 하는데, 작동 원리가 잘 안들어옵니다ㅠ

알려주세용 ㅠ