1

我制作了这两个类以利用匿名内部类的概念。类 1 有一个静态内部类。2 级使用它。但我不明白如何调用内部类的方法。请帮帮我。

1级

public class outerclass {
  outerclass() {
    System.out.println("Constructor of new class");
  }

  public void showthis(String str) {
    System.out.println(str);
  }

  static class insideclass {
    insideclass() {
      System.out.println("This is inside class constructor");
    }

    public void nowshowthis(String str) {
      System.out.println(str);
    }
  }
}

2 级

public class helloworld {
  public static void main(String args[]) {
    //this is an object of the outer class
    outerclass example=new outerclass();
    //How do i make an anonymous inner class and call the method "nowshowthis()"
  }
}
4

5 回答 5

3

让我摆脱眼前的问题!如果你的内部类是非静态的,这就是如何实例化它:(假设example是一个类型的对象outerclass

  example.new insideclass().nowshowthis("my String")

对于static public内部类,您甚至不需要外部类的实例。这样做(很像访问公共静态变量)

new outerclass.insideclass().nowshowthis("my String")

你试过这个吗?

这是怎么回事?在您的情况下,您并没有真正处理 Anonymous 内部类。它实际上只是一个普通的内部类。(我无法解释你为什么要这样做。)

那么什么是匿名类,我们在哪里使用它呢?匿名类就像一次性使用的类的实例。当您实现某个接口时,其中一个示例就会浮出水面……但您不需要以其他方式使用它。例如,您想将处理程序附加到按钮。您可以以这种方式进行操作(假设示例)

   MyButtonInterface obj= new MyButtonInterface(){
      @Override
      onClick(Model obj){
             //save model in DB
       }
   }
   UI.add(obj, "specificId");

你看?

于 2012-08-21T15:22:23.927 回答
3

匿名内部类是在另一个类的方法体中创建和定义的。本质上,您正在从抽象定义中动态创建一个具体类。到目前为止,您的 InnerClass 类实际上只是一个常规的内部类,这意味着非匿名。

如果您想尝试匿名内部类,我能想到的最简单的方法是将您的 InnerClass 更改为接口,如下所示:

public interface InnerClass{
    public void doSomething();
}

所以此刻,InnerClass 确实蹲下了;在定义之前它没有任何意义。接下来,您需要更改 OuterClass 的工作方式。像这样改变你的 showThis() 函数:

public showThis(InnerClass innerObj){
    innerObj.doSomething();
}

现在我们有你的外部类要求内部类实例做某事,但我们仍然没有定义我们想要它做什么。这就是魔法发生的地方 - 在您的 main 方法中,您将定义内部类实例的实际外观:

public static void main (String[] args){
    OuterClass outer = new OuterClass();

    // This is the key part: Here you are creating a new instance of inner class 
    // AND defining its body. If you are using Eclipse, and only write the 
    // new InnerClass() part, you'll notice that the IDE complains that you need 
    // to implement the doSomething() method, which you will do as though you
    // were creating a plain 'ol class definition
    outer.showThis(new InnerClass(){ 
        public void doSomething(){
            System.out.println("This is the inner anonymous class speaking!");
        }
    });
}

在实践中,我并没有过多地使用匿名内部类,但是了解它们很有用。我在进行 GUI 编程时最常使用它们来定义 GUI 控制事件的侦听器,例如按钮单击。

另外,正如其他人所提到的,请记住 Java 标准的类名的第一个字母是大写字母,我在这里做了。您将希望遵循该标准,因为它使其他人更容易阅读您的代码,并且一眼就可以很容易地分辨出您何时在看一个类,何时在看一个对象。

无论如何,希望有帮助。

于 2012-08-21T15:37:06.010 回答
1

insideclass是一个非静态类,因此必须通过外部类的实例访问它,如下所示:
new outerclass().new insideclass().nowshowthis();

于 2012-08-21T15:24:36.347 回答
1

那不是一个匿名的内部类。下面是一个匿名内部类的例子:

class InnerClassDemo {
  public static void main(String[] args) {
    ActionListener a = new ActionListener() {
      @Override
      public void actionPerformed(ActionEvent e) {
        System.out.println(e.getActionCommand());
      }
    };
    // now a is the only instance of an anonymous inner class implementing the ActionListener interface
  }
}

当然,您也可以使用自己的接口或类来执行此操作:

class InnerClassDemo {
  public class InsideClass {
      InsideClass() {
          System.out.println("This is inside class constructor");
      }

      public void nowshowthis(String str) {
          System.out.println(str);
      }
  }

  public static void main(String[] args) {
    InsideClass anonym = new InsideClass() {
      @Override
      public void nowshowthis(String str) {
          System.out.println("anonymous inner class override: "+str);
      }
    }
    InsideClass normalInstance = new InsideClass();
    anonym.noshowthis("test");
    normalInstance.noshowthis("test");
  }
}

你的输出将是

anonymous inner class override: test
test

anonym一个匿名内部类实现的实例也是如此,InsideClassnormalInstance只是你的类的一个普通实例InsideClass

于 2012-08-21T15:30:41.033 回答
1
public class HelloWorld {

    public static void main(String args[])
        {


        outerclass.insideclass example= new outerclass.insideclass();

        example.nowshowthis("Hello");


    }
}

或者,将 nowshowthis 方法设为静态,它可以像这样调用:

outerclass.insideclass.nowshowthis("Howdy. This method is static.");
于 2012-08-21T15:32:32.637 回答