我正在编译我的java代码,但显示错误为identifier expected
。
private JButton AButton = new JButton("A");
Font myFont = new Font("Courier", Font.ITALIC,12);
A.setFont(myFont); // error : identifier expected "
答案 0 :(得分:0)
使用AButton
代替A
,您的行应该:
AButton.setFont(myFont);