2

我正在阅读我没有编写的代码。我偶然发现了以下声明:

    context.checking(new org.jmock.Expectations() {
        {
            allowing(habilitationManager).hasRole(RoleDtoEnum.ROLE_NEWS);
            will(returnValue(true));
            allowing(habilitationManager).hasRole(RoleDtoEnum.ROLE_STAT);
            will(returnValue(true));
            allowing(habilitationManager).getUser();
            will(returnValue(getUserMock()));
            oneOf(parametreService).getParametre(PPP);
            will(returnValue(getMockPPP()));
        }
    });

我知道第二个内部调用的方法{ ... }Expectations方法。

  • 但是你怎么称呼这种代码写作?
  • 特别是你怎么称呼第二个{ ... }
4

1 回答 1

7

它是一个匿名类,其中包含一个实例初始化程序块。所以要把两者分开:

// This is an anonymous class
Expectations expectations = new Expectations() {
    // Class body here
};

class Foo {

    // This is an instance initializer block in a normal class
    {
        System.out.println("You'll see this via either constructor");
    }

    Foo(int x) {}

    Foo(String y) {}
}

实例初始化器与实例变量初始化器同时被隐式调用,按文本顺序,在任何构造函数的主体之前。

于 2013-10-28T17:21:35.630 回答