jbutton字体大小更改错误为“标识符预期”

时间:2016-05-08 07:18:45

标签: java jbutton

我正在编译我的java代码,但显示错误为identifier expected

private JButton AButton = new JButton("A"); 
Font myFont = new Font("Courier", Font.ITALIC,12); 
A.setFont(myFont); // error : identifier expected "    

1 个答案:

答案 0 :(得分:0)

使用AButton代替A,您的行应该:

AButton.setFont(myFont);