您好,登錄后才能下訂單哦!
這篇文章主要介紹“java中使用static要注意什么”,在日常操作中,相信很多人在java中使用static要注意什么問題上存在疑惑,小編查閱了各式資料,整理出簡單好用的操作方法,希望對大家解答”java中使用static要注意什么”的疑惑有所幫助!接下來,請跟著小編一起來學習吧!
1、使用static方法的時候,只能訪問static聲明的屬性和方法,而非static聲明的屬性和方法是不能訪問的。
package com.jk.ref; class People{ String name; private static String country="中國"; public People(String name){ this.name=name; } public void tell(){ System.out.println("name:"+name+" "+"country:"+country); } /** * @return the country */ public static String getCountry() { return country; } /** * @param country the country to set */ public static void setCountry(String country) { People.country = country; } } public class StaticDemo01 { public static void main(String[] args) { // TODO Auto-generated method stub People.setCountry("shanghai"); People ps1=new People("zhangsan"); //People.country="上海"; ps1.tell(); People ps2=new People("lisi"); // ps2.country="上海"; ps2.tell(); People ps3=new People("wangwu"); // ps3.country="上海"; ps3.tell(); } }
2、父類引用只能調父類和子類重寫方法,父子同名方法不會覆蓋而是遮蔽。
public class TestMain { public static void main(String[] args) { Super sup = new Sub(); //封裝(向上造型) sup.m1(); //父類引用無法調子類未重寫方法,輸出mi in Super sup.m2();//調用子類方法m2,繼承先構建父類方法,方法名相同覆蓋(重寫)方法,輸出m2 in Sub Sub sub = (Sub)sup; //拆箱(向下造型) sub.m1(); //調用子類靜態方法m1,先構建父類方法,方法名相同方法名相同遮蔽方法,輸出m2 in Sub sub.m2();//調用子類方法m2,繼承先構建父類方法,方法名相同覆蓋(重寫)方法,輸出m2 in Sub } } class Super{ //父類 public static void m1() { //父類靜態方法 System.out.println(“m1 in Super”); } public void m2() { //父類方法 System.out.println(“m2 in Super”); } } class Sub extends Super{ //子類 public static void m1() { //子類靜態方法 System.out.println(“m1 in Sub”); } public void m2() { //子類方法 System.out.println(“m2 in Sub”); } }
到此,關于“java中使用static要注意什么”的學習就結束了,希望能夠解決大家的疑惑。理論與實踐的搭配能更好的幫助大家學習,快去試試吧!若想繼續學習更多相關知識,請繼續關注億速云網站,小編會繼續努力為大家帶來更多實用的文章!
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。