程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> ava 實例化-兩個類,實例化問題,實例化報錯

ava 實例化-兩個類,實例化問題,實例化報錯

編輯:編程綜合問答
兩個類,實例化問題,實例化報錯

public class Paixu {

public static void main(String[] args) {

    //   Paixu px=new Paixu();

    MaoPaoSort mp=new MaoPaoSort();

//上面這裡就開始報錯了:No enclosing instance of type Paixu is accessible. Must qualify the allocation with an enclosing instance of type Paixu (e.g. x.new A() where x is an instance of Paixu).
}

class MaoPaoSort {
    public  void test1() {
        int a[] = { 1, 1234, 356, 123, 56346, 73, 45342342, 1, 3, 56, };

        for (int i = 0; i < a.length; i++) {

            for (int j = i + 1; j < i - 1; j++) {
                if (a[i] < a[j]) {
                    int tmp = a[i];
                    a[i] = a[j];
                    a[j] = tmp;
                    System.out.println(a[j]);
                }
            }
        }

    }


}

}

最佳回答:


不能在靜態函數中new,把 MaoPaoSort改成靜態的類

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