简单的java语法澄清

时间:2015-01-18 18:19:41

标签: java

我从来没有学过Java,但我需要了解以下代码的含义,主要问题是大括号:

/**
 *   This Universe uses the full HashLife algorithm.
 *   Since this algorithm takes large steps, we have to
 *   change how we increment the generation counter, as
 *   well as how we construct the root object.
 */
public class HashLifeTreeUniverse extends TreeUniverse {
   public void runStep() {
      while (root.level < 3 ||
             root.nw.population != root.nw.se.se.population ||
             root.ne.population != root.ne.sw.sw.population ||
             root.sw.population != root.sw.ne.ne.population ||
             root.se.population != root.se.nw.nw.population)
         root = root.expandUniverse() ;
      double stepSize = Math.pow(2.0, root.level-2) ;
      System.out.println("Taking a step of " + nf.format(stepSize)) ;
      root = root.nextGeneration() ;
      generationCount += stepSize ;
   }
   {
      root = HashLifeTreeNode.create() ;
   }
}

特别是在列表底部的这句话:

   {
      root = HashLifeTreeNode.create() ;
   }

它看起来像一个没有签名的方法,它是什么意思?

提前谢谢!

2 个答案:

答案 0 :(得分:7)

那是instance initializer

这是在构造函数体执行之前作为构造新实例的一部分执行的一些代码。以这种方式布置它是很奇怪的,直接在一个方法之后。 (说实话,它是相对罕见的。说实话。在这种情况下,如果字段在同一个类中声明,它看起来应该只是一个字段初始化器。(目前尚不清楚你是否向我们展示了< em>整个的班级与否。)

实例初始值设定项和字段初始值设定项以文本顺序,超类构造函数之后和“this”构造函数体之前执行。

例如,请考虑以下代码:

class Superclass {
    Superclass() {
        System.out.println("Superclass ctor");
    }
}

class Subclass extends Superclass {
    private String x = log("x initializer");

    {
        System.out.println("instance initializer");
    }

    private String y = log("y initializer");

    Subclass() {
        System.out.println("Subclass ctor");
    }

    private static String log(String message)
    {
        System.out.println(message);
        return message;
    }
}

public class Test {    
    public static void main(String[] args) throws Exception {
        Subclass x = new Subclass();
    }
}

输出结果为:

Superclass ctor
x initializer
instance initializer
y initializer
Subclass ctor

答案 1 :(得分:3)

它是一个instance block(几个代码),它在构造实例之前执行,每次尝试创建HashLifeTreeUniverse实例时都会执行该实例。

在您突出显示的一对大括号之间的代码将在调用构造函数之前执行。