¿¹Á¦
public
static
void
main(
String
[] args ) {
String
notClear1 =
null
, notClear2[] =
null
;
notClear1 = args[
0
];
notClear2[
0
] = args[
1
];
}
¼Ö·ç¼Ç
±âº»°ú ¹è¿ º¯¼ö ¼±¾ðÀ» ºÐÇÒÇϽʽÿÀ.
public
static
void
main(
String
[] args ) {
String
notClear1 =
null
;
String
[] notClear2 =
null
;
notClear1 = args[
0
];
notClear2[
0
] = args[
1
];
}