0
私のクラスを2番目のクラスにメソッドShutDownServer
を実行させようとしています。メソッドを呼び出すためには何を変更する必要がありますか?Java:別のクラスのメソッドを呼び出す
マイファーストクラス(私はすべての余分なコードを削除しました):
//imports the other class
package examples;
import examples.Class2;
//Below line has error: The method ShutDownServer() is undefined for the type Class2
Class2.shutDownServer();
マイセカンドクラス:
package examples;
public class Class2 {
public void shutDownServer() {
System.out.println("It Works?");
}
}
package examples;
は 'Build'は、コンパイルしていますか?私は不足しているブレースに気付きます。 – Mordechaiはい。それはコンパイルする。 – heyitsmyusername
同じ名前の 'Build'クラスが2つありますか? – Andrew