在Java中,方法/构造函数声明是否可以出现在另一个方法/构造函数声明中?

时间:2011-01-19 13:45:59

标签: java methods constructor jls

在Java中,方法/构造函数声明是否可以出现在另一个方法/构造函数声明中?例如:

void A() { 
    int B() { }
}

我想不是,但我很乐意放心。

5 个答案:

答案 0 :(得分:4)

即可。它不可编译。

答案 1 :(得分:3)

答案 2 :(得分:3)

不是直接的,但你可以在方法的类中有一个方法:

class A {
    void b() {
        class C {
            void d() {
            }
        }
    }
}

答案 3 :(得分:2)

这在java中是不可能的。然而,这可以通过接口实现,尽管代码变得复杂。

interface Block<T> {
  void invoke(T arg);
}
class Utils {
  public static <T> void forEach(Iterable<T> seq, Block<T> fct) {
    for (T elm : seq)
      fct.invoke(elm);
  }
}
public class MyExample {
  public static void main(String[] args) {
    List<Integer> nums = Arrays.asList(1,2,3);   
    Block<Integer> print = new Block<Integer>() {
      private String foo() {    // foo is declared inside main method and within the block
        return "foo";
      }
      public void invoke(Integer arg) {  
        print(foo() + "-" + arg);
      }
    };
    Utils.forEach(nums,print);
  }
}

答案 4 :(得分:1)

不,Java只允许在类中定义方法,而不是在另一个方法中定义。