ActionScript-AS3单例模式

发布于 2016-11-20 11:33:22 字数 65 浏览 1200 评论 3

as构造函数不能为private,网上的答案觉得只有定义构造函数的参数比较有用,但比较麻烦,有没有好的单例实现模式。

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(3

泛泛之交 2017-08-04 13:48:37

我这边给另一种思路(包外类

 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{
//包外类
//其他类访问不到
}

浮生未歇 2017-06-27 11:43:18

可以在构造函数中做限制:

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("单例");
}
}
}

归属感 2016-12-13 05:17:13

private static var _instance:Test;
public static function get instance():Test {
if(instance == null) {
instance = new Test();
}
return instance;
}

调用的时候就可以直接Test.instance
对于AS3来说 单例是挺简单的 不用考虑并发的情况

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文