Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
换句话说,使用
main(String args[]) { }
args[] 是公共的、受保护的还是私有的?
谢谢
args[]是函数的参数(即 is main),访问修饰符不适用于参数。
args[]
main
参数对于它们被传递的函数始终是本地的(这意味着它们的范围是函数的主体)。
访问修饰符适用于所有类成员,包括嵌套类、枚举和接口。
public static void main(String [] args) ...
public方法的修饰符在哪里main
public
方法参数本质上是方法局部变量;他们没有可访问性。