Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. class Testing2 {
  2.     static int x; //정적 변수
  3. }
  4.  
  5. public class StaticTest2 {
  6.  
  7.     public static void main(String[] args) {
  8.         //Testing2객체를 생성하지 않고 클래스명으로 바로 정적 변수 x에 접근
  9.         System.out.println(Testing2.x);
  10.         Testing2.x = 20; //같은 방식으로 값을 변경하는것도 가능
  11.         System.out.println(Testing2.x);
  12.     }
  13.  
  14. }