溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點(diǎn)擊 登錄注冊 即表示同意《億速云用戶服務(wù)條款》

Java中static和私有化的示例分析

發(fā)布時間:2021-09-28 14:13:12 來源:億速云 閱讀:131 作者:小新 欄目:編程語言

這篇文章將為大家詳細(xì)講解有關(guān)Java中static和私有化的示例分析,小編覺得挺實(shí)用的,因此分享給大家做個參考,希望大家閱讀完這篇文章后可以有所收獲。

具體如下:

1、static作用主要有兩方面:其一,當(dāng)希望類中的某些屬性被所有對象共享,則就必須將其聲明為static屬性;其二,如果一個類中的方法由類名調(diào)用,則可以將其聲明為static方法。

2、需要注意的是,非static聲明的方法可以去調(diào)用statci聲明的屬性和方法;但是static聲明的方法不能調(diào)用非static類型的聲明的屬性和方法。

3、static方法調(diào)用static變量

public class Pvf {  static boolean Paddy;  public static void main(String[] args) {    System.out.println(Paddy);  }}

輸出結(jié)果為

false

分析:變量被賦予了默認(rèn)值false。

4、static方法調(diào)用非static變量

public class Sytch {  int x = 20;  public static void main(String[] args) {    System.out.println(x);  }}

輸出結(jié)果為:

Exception in thread "main" java.lang.Error: Unresolved compilation problem: Cannot make a static reference to the non-static field x

at test02.Sytch.main(Sytch.java:6)

5、

public class Sundys {  private int court;  public static void main(String[] args) {    Sundys s = new Sundys(99);    System.out.println(s.court);  }  Sundys(int ballcount) {    court = ballcount;  }}

輸出結(jié)果為:

99

分析:私有化變量仍可以被構(gòu)造方法初始化。

6、私有化的一個應(yīng)用是單例設(shè)計模式

class Singleton{  private static Singleton instance = new Singleton();  private Singleton(){  }  public static Singleton getInstance(){    return instance;  }  public void print(){    System.out.println("hello");  }}public class SingleDemo05 {  public static void main(String[] args) {    Singleton s1 = Singleton.getInstance();    Singleton s2 = Singleton.getInstance();    Singleton s3 = Singleton.getInstance();    s1.print();    s2.print();    s3.print();  }}

輸出結(jié)果為:

hellohellohello

分析:雖然聲明了3個Singleton對象,但實(shí)際上所有的對象都只使用instance引用,也就是說,不管外面如何,最終結(jié)果也只有一個實(shí)例化對象存在。此即為單例設(shè)計模式。

由此可知,只要將構(gòu)造方法私有化,就可以控制實(shí)例化對象的產(chǎn)生。

關(guān)于“Java中static和私有化的示例分析”這篇文章就分享到這里了,希望以上內(nèi)容可以對大家有一定的幫助,使各位可以學(xué)到更多知識,如果覺得文章不錯,請把它分享出去讓更多的人看到。

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI