没有声明为public、private或protected的变量被称为什么?

9 浏览
0 Comments

没有声明为public、private或protected的变量被称为什么?

如果不是这样定义:

private JButton theButton;

而是像这样定义一个字段:

JButton theButton;

有什么区别吗?

0