public class Test { public static void main(String[] args) { static string args 是什么意思?

2024-12-13 04:56:28
推荐回答(1个)
回答1:

static 静态,代表程序中范围

string 字符串类型

args 参数

static 可以修饰变量,方法,修饰之后代表,程序中该变量和方法在内存中的位置只有一个

string[] args 代表参数是数组,且类型为字符串的字符串数组