修改后的程序应该如下:
import java.awt.*;
import java.awt.event.*;
import javax.swing.*;
import javax.swing.event.*;
public class hello extends JFrame{
hello(String title){
super(title);
setSize(300,200);
setVisible(true);
}
public static void main(String[] args){
new hello("helloworld");
}
}