private static instance:SoundManager;
此处使用private是为了避免外部调用类名.instance 来进行操作。
被private static修饰的属性仅仅可以被静态方法调用,
但是只能被本类中的方法(可以是非静态的)调用,
在外部创建这个类的对象或者直接使用这个类访问都是非法的。
被public static修饰的属性除了可以被静态方法和非静态调用之外,
还可以直接被类名和外部创建的对象调用。
标签:com private 对象 src 属性 bubuko 调用 str 创建
private static instance:SoundManager;
此处使用private是为了避免外部调用类名.instance 来进行操作。
被private static修饰的属性仅仅可以被静态方法调用,
但是只能被本类中的方法(可以是非静态的)调用,
在外部创建这个类的对象或者直接使用这个类访问都是非法的。
被public static修饰的属性除了可以被静态方法和非静态调用之外,
还可以直接被类名和外部创建的对象调用。
标签:com private 对象 src 属性 bubuko 调用 str 创建
原文地址:https://www.cnblogs.com/WentingC/p/8630630.html