ActionScript-AS3单例模式
as构造函数不能为private,网上的答案觉得只有定义构造函数的参数比较有用,但比较麻烦,有没有好的单例实现模式。
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
as构造函数不能为private,网上的答案觉得只有定义构造函数的参数比较有用,但比较麻烦,有没有好的单例实现模式。
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
接受
或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
发布评论
评论(3)
我这边给另一种思路(包外类)
package{
class Test {
private static var instance:Test;
public static function getInstance():Test {
if(instance == null) {
instance = new Test(new PrivClass);
}
return instance;
}
public function Test(ref:PrivClass) {
ref = null;
}
}
}
class PrivClass{
//包外类
//其他类访问不到
}
可以在构造函数中做限制:
class Test {
private static var instance:Test;
public static function getInstance():Test {
if(instance == null) {
instance = new Test();
}
return instance;
}
public function Test() {
if(instance != null) {
throw new ArgumentError("单例");
}
instance = this;
}
}
另一种方式,采用const定义:
class Test {
public static const instance:Test = new Test();
public function Test() {
if(instance != null) {
throw new ArgumentError("单例");
}
}
}
private static var _instance:Test;
public static function get instance():Test {
if(instance == null) {
instance = new Test();
}
return instance;
}
调用的时候就可以直接Test.instance
对于AS3来说 单例是挺简单的 不用考虑并发的情况