程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程解疑 >> 方法嵌套方法-java中非static方法內部能否嵌套非static方法?

方法嵌套方法-java中非static方法內部能否嵌套非static方法?

編輯:編程解疑
java中非static方法內部能否嵌套非static方法?

class NiMingLei
{
public static void main(String[] args)
{
Outer a= new Outer();
a.function();
}
}

class Outer
{
static int y=4;
void function()
{
void show()
{
System.out.println(123);
}

  class Inter
  {
     void method()
      {
        System.out.println(234);
     }  

  }
  new Inter().method();

}

}

NiMingLei.java:15: 錯誤: 非法的表達式開始
void show()
^
NiMingLei.java:15: 錯誤: 需要';'
void show()
^
2 個錯誤

最佳回答:


語法是有問題的,一個方法可以發起對另外一個方法的調用,但是一個方法不能嵌套一個方法,這個和javascript是有區別的。

void methodA(){
System.out.println("我要調用B方法了");
methodB();
}
void methodB(){
System.out.println("我是B方法");
}
這樣就是正確的。

如果:
void methodA(){
System.out.println("我要調用B方法了");
void methodB(){
System.out.println("我是B方法");
}
}
這樣在A方法中嵌入B方法的形式就是錯誤的。

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved