我是Jogl和Java的新手,我应该在这个Hello world程序中导入什么?谢谢!
public class HelloWorld
{ // open HelloWorld
public static void main (String args[])
{ // open main
try
{ // open try
System.loadLibrary("jogl");
System.out.println("Hello World! (The native libraries are installed.)");
} // close try
catch (Exception e) // all try's need a catch
{ } // even if the catch does nothing
} // close main
} // close HelloWorld
答案 0 :(得分:2)
对于那个特定代码,我认为你不需要导入任何东西。您使用的唯一包是System
已经可以使用。
如果你想做更复杂的事情,你可能至少需要:
import net.java.games.jogl.*
虽然你无疑会通过导入特定的东西来实现更精细的控制。
答案 1 :(得分:0)
如果除了打印该字符串之外不打算执行任何操作,则不需要其他导入。只有在BufferedReader等程序中使用它时才需要导入