Java

[JAVA] #import

mygomii 2019. 6. 24. 10:50
반응형
  • 외부 패키지의 클래스를 사용할 경우 패키지명을 함께 써야하는데 import를 사용함으로써 간결하게 사용 할 수 있음
  •  // import 안 쓸 경우 
    android.widget.TextView textView1 = findViewById(R.string.test1);
    android.widget.TextView textView2 = findViewById(R.string.test2);
    // import 쓸 경우
    import android.widget.TextView;
    TextView textView = findViewById(R.string.test);
     
반응형