class commandLine2
{
public static void main(String[] args)
{
final int num = 0;
int i = 0;
int length = args[num].length();
char[] c;
for(int j=0; j<length; j++)
{
c[j] = args[num].charAt[j];
}
String s = args[i];
i++;
int num1 = Integer.valueOf(args[i]).intValue();
i++;
int num2 = Integer.valueOf(args[i]).intValue();
s = s.copyValueOf(c,num1,num2);
System.out.println(s);
}
}
커맨드라인으로 HELLOJAVA 2 3 이렇게 받으면
LLO 이렇게 출력되게하는 코드를 짜봤습니다.
저 빨간부분이 처음에 입력받은 HELLOJAVA (String형이죠)를 charAt을써서 char형으로 반환받아서 char형 배열에 하나하나 집어넣는 작업인데
저기서 왜 에러가 뜰까요?.. 어떻게 수정해야할까요?. ㅠㅠ