急的直什么:jbuilder怎样执行这样一个简单的程序?

来源:百度文库 编辑:高考问答 时间:2024/05/10 05:50:42
public class First {
public First() {
System.out.print("hello");
}
public static void main(String[] args) {
First first1 = new First();

}

}
它一执行就跳出个对话框?不应当打印出个hello来吗?

这个程序只能在控制台上打印出hello,没有对话框