我正在制作一个迷你 Java 游戏,编译时出现错误:
error:invalid method declaration;return type requied
public init() throws Exception {
^
第一个版本是 public void init,但我不能那样做,因为我需要使用 try{..}catch(Malformed...) 或在编译时出现另一个错误(需要 catch blah blah)。
这是代码:
public void run() throws Exception{
try{
this.zz();
}catch(MalformedURLException me){
throw me;
}
this.zo();
}