高手有没有人讲详细点的,我想问下,public class Test { public static void main(String[] args) { static string args 是什么意思?
static 静态,代表程序中范围string 字符串类型args 参数static 可以修饰变量,方法,修饰之后代表,程序中该变量和方法在内存中的位置只有一个string[] args 代表参数是数组,且类型为字符串的字符串数组