import org.newdawn.slick.Image;
import org.newdawn.slick.SlickException;
public class Images {
try {
public static Image button = new Image("images/buttons/0/Button.png");
} catch(SlickException e) {
e.printStackTrace();
}
}
這只是給出了一個錯誤外,我希望能夠到一些圖像存儲在靜態變量和從其他類訪問它們沒有實例它。爪哇 - 使用TryCatch的方法
我可能會做一個方法來初始化它們併爲它們設置值,但是這些變量不會是靜態的。
我之所以需要TryCatch是因爲Image
類的構造函數拋出一個SlickException
什麼錯誤?你能給我們更多的細節,請問? – 2012-08-02 12:03:52
也許還加上'final'。然後編譯器強迫你考慮在該catch塊中分配什麼。 – Thilo 2012-08-02 12:06:44