数组-单例设计模式
概念:设计模式:(只能有一个对像存在)
把一些反复使用的,多数人都会去使用的一些方法封装成一个设计,提供给他其他人使用
public class ArraysTool{ //静态 public static final ArraysTool instance = new ArraysTool(); //属性私有化 private ArraysTool(){ } public void sort(int[] arr){ System.out.println("单例设计模式,排序操作"); } public static ArraysTool getInstance(){ return instance; } }
静态方法调用:只能使用:类名. 去调用
public class ArraysTest{ public static void main(String[] args){ //静态调用:类名. ArraysTool.getInstance().sort(arr); } }