为什么使用Singleton在Java中创建对象的速度如此之慢?

时间:2013-02-28 20:32:25

标签: java performance constructor singleton

最近我创建了一个类Singleton,其中一个方法返回类Singleton的对象myInstance。它类似于:

private final static Singleton myInstance = new Singleton();

之后我编写了整个构造函数,这是私有的,让我们说:

private Singleton(){
   doStuff()
}

然而表现非常糟糕。也许有人可以给我一个提示,为什么doStuff()比我不使用Singleton慢得多?我想这与在声明变量时调用构造函数有关,但有人可以分享一些关于它的信息吗?

我不知道为什么会这样,我试图寻找解释,但我找不到它。

编辑:dostuff功能包括打开文件/读取/使用regexp等内容,使用levenstein函数[通过profiler是代码中最慢的部分]。 当使用单例从构造函数运行levenstein时,levenstein函数的速度大约需要10秒。在创建对象之后,对此单例对象内的此函数的调用仅花费0.5秒。现在,当不使用单例时,从构造函数调用levenstein函数也是0.5秒,在单身人员完成10秒之前。该函数的代码如下: [“odleglosci”只是一张简单的地图]

 private static int getLevenshteinDistance(String s, String t) {

    int n = s.length(); // length of s
    int m = t.length(); // length of t

    int p[] = new int[n + 1]; //'previous' cost array, horizontally
    int d[] = new int[n + 1]; // cost array, horizontally
    int _d[]; //placeholder to assist in swapping p and d

    // indexes into strings s and t
    int i; // iterates through s
    int j; // iterates through t

    char t_j; // jth character of t

    int cost; // cost

    for (i = 0; i <= n; i++) {
        p[i] = i * 2;
    }
    int add = 2;//how much to add per increase
    char[] c = new char[2];
    String st;
    for (j = 1; j <= m; j++) {
        t_j = t.charAt(j - 1);
        d[0] = j;

        for (i = 1; i <= n; i++) {
            cost = s.charAt(i - 1) == t_j ? 0 : Math.min(i, j) > 1 ? (s.charAt(i - 1) == t.charAt(j - 2) ? (s.charAt(i - 2) == t.charAt(j - 1) ? 0 : 1) : 1) : 1;//poprawa w celu zmniejszenia wartosci czeskiego bledu
            if (cost == 1) {
                c[0] = s.charAt(i - 1);
                c[1] = t_j;
                st = new String(c);
                if (!odleglosci.containsKey(st)) {
                    //print((int) c[0]);
                    //print((int) c[1]);
                } else if (odleglosci.get(st) > 1) {
                    cost = 2;
                }

            } else {
                c[0] = s.charAt(i - 1);
                c[1] = t_j;
                st = new String(c);

                if (!odleglosci.containsKey(st)) {
                    // print((int) c[0]);
                    // print((int) c[1]);
                } else if (odleglosci.get(st) > 1) {
                    cost = -1;
                }
            }

            d[i] = Math.min(Math.min(d[i - 1] + 2, p[i] + 2), p[i - 1] + cost);
        }


        _d = p;
        p = d;
        d = _d;
    }
    return p[n];
}

我没想到这里的代码与我问的问题有任何关联,这就是为什么我之前没有包含它,抱歉。

1 个答案:

答案 0 :(得分:3)

它很慢的原因是因为doStuff()很慢。