자바 에서 정적 변수 와 인 스 턴 스 변수의 차이 점 에 대해 자세히 소개 합 니 다.

실행 효과:

콘 솔 효과:

==================================================
코드 부분
==================================================
/hello_test/src/com/b510/test/StaticTest.java
/**
  *
  */
 package com.b510.test;

 /**
  * : , ,<br>
  * , 。 <br>
  * , , , ,<br>
  * , , 。<br>
  * , , <br>
  * 。 , , ,<br>
  * <code>staticInt</code> , ,<br>
  * <code>staticInt</code> 1; , , <code>random</code>,<br>
  * <code>random</code>, <code>random</code> 1 。<br>
  *
  * @author <a href="mailto:[email protected]">hongten</a>
  * @date 2013-3-2
  */
 public class StaticTest {

     private static int staticInt = 2;
     private int random = 2;

     public StaticTest() {
         staticInt++;
         random++;
         System.out.println("staticInt = "+staticInt+"  random = "+random);
     }

     public static void main(String[] args) {
         StaticTest test = new StaticTest();
         StaticTest test2 = new StaticTest();
     }
 }

좋은 웹페이지 즐겨찾기