假设我有这个代码
public static long number;
public static void main(String args[]) {
String str1 = args[0];
System.out.println("str1 is = " + str1);
long number = Long.parseLong(str1);
System.out.println("number value is = " + number);
}
public static void test1(){
System.out.println("number value inside test1 is = " + number);
}
假设我将 12345 作为参数传递,所以我的 o/p 将是
str1 is 12345
number value is 12345
number value inside test1 is 0
我想要的是能够在 test1 方法中访问 arg[0] (用户参数)或数字(12345)的原始值。请帮我做。谢谢。!