素心向秋,清浅入眸:jbuilder怎样执行这样一个简单的程序?

来源:百度文库 编辑:中科新闻网 时间:2024/05/09 04:17:53
public class First {
public First() {
System.out.print("hello");
}
public static void main(String[] args) {
First first1 = new First();

}

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

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