posts - 51, comments - 17, trackbacks - 0, articles - 9
            BlogJava :: 首頁 :: 新隨筆 :: 聯(lián)系 :: 聚合  :: 管理

          java static

          Posted on 2007-04-08 20:12 chenweicai 閱讀(133) 評論(0)  編輯  收藏

          1.靜態(tài)變量

          public class Chinese {

           static String country = "中國";
           
           String name;
           int age;
           
           void singOurCountry(){
            System.out.println("啊, 親愛的" + country);
           }
          }

           public static void main(String[] args) {

            System.out.println("Chinese country is :" + Chinese.country);//類.成員
            Chinese ch1 = new Chinese();
            System.out.println("Chinese country is :" + ch1.country);//對象.成員
                  ch1.singOurCountry();
           }


          注:1. 不能把任何方法內(nèi)的變量聲明為static類型
                  2. 靜態(tài)成員變量為該類的各個實例所共享,所以在內(nèi)存中該變量只有一份,
                      經(jīng)常用來計數(shù)統(tǒng)計
          如:
          class A{
               private static int  count = 0;

                public A(){
                    count = count + 1;  
              }

          public void finalize(){//在垃圾回收時,finalize方法被調(diào)用
                 count = count - 1;
              }
          }


          2.靜態(tài)方法
          public class Chinese {

           //在靜態(tài)方法里,只能直接調(diào)用同類中的其他靜態(tài)成員,不能直接訪問類中的非靜態(tài)成員和方法
           //因為對如非靜態(tài)成員和方法,需先創(chuàng)建類的實例對象后才可使用。
           //靜態(tài)方法不能使用關(guān)鍵字this和super,道理同上
           //main方法是靜態(tài)方法,不能直接訪問該類中的非靜態(tài)成員,必須先創(chuàng)建該類的一個實例
           static void sing(){
            System.out.println("啊...");
           }
           
           void singOurCountry(){
            sing();//類中的成員方法可以直接訪問靜態(tài)成員方法
            System.out.println("啊...祖國...");
           }
          }

           public static void main(String[] args) {

            Chinese.sing();//類.方法
            
            Chinese ch1 = new Chinese();
            ch1.sing();//對象名.方法
            ch1.singOurCountry();
           }


          3. 靜態(tài)代碼塊
          public class StaticCode {

           static String country;
           
           static{
            country = "Chine";
            System.out.println("Static code is loading...");
           }
          }

          public class TestStatic {

           static{
            System.out.println("TestStatic code is loading..."); 
           }
           
           public static void main(String[] args){
            System.out.println("begin executing main method...");
            //類中的靜態(tài)代碼將會自動執(zhí)行,盡管產(chǎn)生了類StaticCode的兩個實例對象,
            //但其中的靜態(tài)代碼塊只被執(zhí)行了一次。同時也反過來說明:類是在第一次被使用時
            //才被加載,而不是在程序啟動時就加載程序中所有可能要用到的類
            new StaticCode();
            new StaticCode();
           }
           
          }




          只有注冊用戶登錄后才能發(fā)表評論。


          網(wǎng)站導(dǎo)航:
           
          主站蜘蛛池模板: 彩票| 商河县| 黔江区| 克拉玛依市| 金堂县| 论坛| 增城市| 黄骅市| 仙游县| 桐梓县| 额敏县| 玉门市| 沐川县| 天峨县| 江永县| 安阳市| 德安县| 萝北县| 林口县| 莱芜市| 县级市| 彝良县| 临颍县| 兴山县| 文水县| 略阳县| 乌兰县| 平昌县| 濮阳市| 六枝特区| 开封县| 额尔古纳市| 剑阁县| 石楼县| 磐安县| 得荣县| 措美县| 安义县| 黑河市| 涟水县| 南召县|