单例类

 1 package com.array.jun;
 2 
 3 public class Singletion {
 4 
 5     private static String test = "This is a singletion!";
 6     
 7     private Singletion(){}
 8     
 9     public static void Test(){
10         System.out.println(test);
11     }
12     
13     public static void main(String[] args) {
14         // TODO Auto-generated method stub
15         Singletion.Test();
16     }
17 
18 }

 

posted @ 2019-02-25 20:15  稀依心  阅读(99)  评论(0编辑  收藏  举报