JAVA 帮我找一下错误
1 (Example8_7) 我定义了一个十行十列的文本区,但发现它可以随便的输入字符而不受行和数量的限制。请指教。
2(Example8_7)
如下程序:
TextArea text1,text2;
Button button;
{ button=new Button("确定");
text1=new TextArea(10,10);
text2=new TextArea(10,10);
text2.setEditable(false);
add(text1); add(text2); add(button);
button.addActionListener(this);
}
public void actionPerformed(ActionEvent e)
{ /*if(e.getSourec()==button)*/
{ text2.append("\n"+text1.getSelectedText());}
}
为何当注释段加上时,编译不下去呢