0

我试图用 Apache Wicket (6.15.0) 和 Groovy (2.2.2 或 2.3.1) 编写简单的东西。而且我在内部课程方面遇到了麻烦。

class CreatePaymentPanel extends Panel { 
  public CreatePaymentPanel(String id) {
    super(id)
    add(new PaymentSelectFragment('currentPanel').setOutputMarkupId(true))
}

public class PaymentSelectFragment extends Fragment {
        public PaymentSelectFragment(String id) {
            super(id, 'selectFragment', CreatePaymentPanel.this) // problem here
            add(new AjaxLink('cardButton') {
                @Override
                void onClick(AjaxRequestTarget target) {
                    ... CreatePaymentPanel.this // not accessible here 
                }
            })
            add(new AjaxLink('terminalButton') {
                @Override
                void onClick(AjaxRequestTarget target) {
                    ... CreatePaymentPanel.this // not accessible here 
                }
            });
        }
        } // end of PaymentSelectFragment class
} // end of CreatePaymentPanel class

Groovy 尝试在 CreatePaymentPanel 类中找到一个属性“this”。如何解决这个问题?这是一个有效的 java 代码,但不是 groovy。

但是,Test.groovy:

class Test {

    static void main(String[] args) {
        def a = new A()
    }

    static class A {
        A() {
            def c = new C()
        }

        public void sayA() { println 'saying A' }

        class B {
            public B(A instance) {
                A.this.sayA()
                instance.sayA()
            }
        }
        /**
         * The problem occurs here
         */
        class C extends B {
            public C() {
                super(A.this) // groovy tries to find property "this" in A class
                sayA()
            }
        }
    }
}

上面的代码不起作用,会发生同样的错误,就像在 Wicket 的情况下一样。

和 TestJava.java,同样有效:

public class TestJava {

    public static void main(String[] args) {
        A a = new A();
    }

    static class A {
        A() {
            C c = new C();
        }

        public void sayA() {
            System.out.println("saying A");
        }

        class B {
            public B(A instance) {
                instance.sayA();
            }
        }

        /**
         * This works fine
         */
        class C extends B {
            public C() {
                super(A.this);
                sayA();
            }
        }
    }
}

我错过了什么?

4

1 回答 1

0

您不能引用CreatePaymentPanel.this内部,PaymentSelectFragment因为那里没有CreatePamentPanel可访问的实例。如果它被允许,你期望它评估什么?

于 2014-05-20T11:26:35.693 回答