5

私は非常に多くのシングルトンの実装を見てきましたが、シングルトンが欲しいだけです

1.- 最初の呼び出しでのインスタンス 2.- インスタンスは 1 回だけ (当然)

では、パフォーマンスと最小のメモリ消費量で、これに最適な実装は何ですか?

例 1

package Singletons
{
    public class someClass
    {
        private static var _instance:someClass;

        public function AlertIcons(e:Blocker):void{}

        public static function get instance():someClass{
            test!=null || (test=new someClass(new Blocker()));
            return _instance;
        }
    }
}
class Blocker{}

例2

public final class Singleton
{
    private static var _instance:Singleton = new Singleton();

    public function Singleton()
    {
        if (_instance != null)
        {
            throw new Error("Singleton can only be accessed through Singleton.instance");
        }
    }

    public static function get instance():Singleton
    {
        return _instance;
    }
}

例 3

package {

    public class SingletonDemo {
        private static var instance:SingletonDemo;
        private static var allowInstantiation:Boolean;

        public static function getInstance():SingletonDemo {
            if (instance == null) {
                allowInstantiation = true;
                instance = new SingletonDemo();
                allowInstantiation = false;
            }
            return instance;
        }

        public function SingletonDemo():void {
            if (!allowInstantiation) {
                 throw new Error("Error: Instantiation failed: Use SingletonDemo.getInstance() instead of new.");
            }
        }
    }
}
4

1 に答える 1

13

例 2 ただし、new Singleton() を少なくとも 1 回呼び出すことを許可する必要があり、必要になるまでインスタンス化するのは好きではないため、ねじれがあります。したがって、instance() への最初の呼び出しで実際にインスタンスが作成されます... 後続の呼び出しオリジナルをつかむ。

編集:あなたが電話した場合にもそれがどのように許可されるかをまきました

var singleton:Singleton = new Singleton();

それは機能します...しかし、今後のすべての試みはエラーをスローし、 getInstance() メソッドの使用を強制します

public final class Singleton{
    private static var _instance:Singleton;

    public function Singleton(){
        if(_instance){
            throw new Error("Singleton... use getInstance()");
        } 
        _instance = this;
    }

    public static function getInstance():Singleton{
        if(!_instance){
            new Singleton();
        } 
        return _instance;
    }
}
于 2012-11-10T03:15:34.777 に答える