我想使用E類擴展類Test1,我只想顯示一條消息。請修復簡單的Java代碼中的錯誤
class Test1
{
public static void main(String[] args)
{
E e = new E();
}
}
class E extends Test1
{
System.out.println("Hello World!");
}
我得到這些錯誤:
Test1.java:10: <identifier> expected
System.out.println("Hello World!");
^
Test1.java:10: illegal start of type
System.out.println("Hello World!");
^
2 errors
你知道這是什麼錯誤意味着什麼?你爲解決這個問題付出了多少努力? – kosa
E類擴展Test1 @ public E(){ System.out.println(「Hello World!」);} } – SMA
@PeterRader號。他的輸出不在方法/構造函數中 – Li357