您好,登錄后才能下訂單哦!
在java中使用static是需要注意哪些事項?針對這個問題,這篇文章詳細介紹了相對應的分析和解答,希望可以幫助更多想解決這個問題的小伙伴找到更簡單易行的方法。
Java的基本數據類型分為:1、整數類型,用來表示整數的數據類型。2、浮點類型,用來表示小數的數據類型。3、字符類型,字符類型的關鍵字是“char”。4、布爾類型,是表示邏輯值的基本數據類型。
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進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。