non-static

    0熱度

    2回答

    我正在做一些hw,目前難住。 它爲ArrayStack提供了一個接口和一個類,並要求編寫一個將中綴轉換爲後綴的代碼。 以我主要方法是這條線 PostFixConverter(infixExpression); 其調用其計算後綴表達式的方法。 我的問題是,ArrayStack類不是靜態的,但我的主要方法是,所以我該如何解決這個問題? 此外, 我是否轉換綴以後綴錯了賺不到,因爲所有其他代碼我已經看

    0熱度

    2回答

    public class FileReaderProgram { String stringComponent; int integerComponent; public static void main(String[] args) { Scanner in = new Scanner(System.in); System.out.p

    0熱度

    1回答

    我正在嘗試編寫一個代碼,該代碼生成一個包含給定int數組的所有可能排列的列表。 我有found online a method(下面的代碼中的「nextPermutation」)允許這樣做,我試圖將它實現爲基本代碼,但它不起作用。 問題是,當我試圖動態地將包含新排列的數組添加到列表中時,已經存儲在列表中的所有先前排列都被替換爲新排列。 我想這個問題在某種程度上與我的「nextPermutation

    0熱度

    1回答

    我有一個頁面,我有一個列表視圖,其項目源綁定到一個Observable Collection屬性,它是非靜態的。 我的問題是,如何訪問或更改列表視圖所在的Page類之外的集合。 我想在外面更改該集合,因爲我想從其他頁面更改或向該ListView添加新項目。

    0熱度

    1回答

    我在Java編程的早期階段,我不斷收到在標題中提到的編譯器錯誤。這裏是我的代碼主要方法: public class Temperature { public double degrees; public char scale; public double degreesC = (5*(degrees - 32))/9; public double degr

    -2熱度

    1回答

    我寫了一個C++程序,當我編譯它,我得到這個警告,無論我打電話Vector3* center = new Vector3(),其實無論我打電話的Vector3()構造函數: warning: non-static data member initializers only available with -std=c++11 or -std=gnu++11 [enabled by default]

    -1熱度

    2回答

    任何人都知道如何從WndProc調用非靜態成員? 這裏是我的WndProc原型: LRESULT CALLBACK System::Windows::Forms::Control::WndProc(HWND hWnd, UINT message, WPARAM wParam, LPARAM lParam) { switch (message) {

    1熱度

    3回答

    我最近開始使用C++,並且偶然發現了一個我似乎無法理解的問題。 class MyClass { bool eventActive = false; static bool JoinCommand() { if (eventActive == true) // eventActive error: "a nonstatic member referenc

    1熱度

    3回答

    class parent { parent() { System.out.println("parent"); } } public class child extends parent { { System.out.println("non static block"); } child() { supe

    0熱度

    1回答

    我想將帶有.exe文件的信息讀入另一個腳本。 之後,可以立即關閉此.exe文件。 我使用下面的代碼: static void CallFile() { Process.Start(File.exe); Process.Kill(); } 我有幾個網站,這些是最好/最簡單的命令,以便打開和關閉特定的文件使用中發現。不過,我有以下的錯誤與我process.k