String 클래스는 자주 사용하는 클래스인 만큼 메서드도 굉장히 많습니다. 그중에서 substring이란 메서드를 수행하겠습니다. 이 메서드는 “잘라주세요.”라는 뜻입니다. 옆의 괄호에 ‘3’이라고 넣어줍니다. 즉, 이 코드의 의미는 “인덱스가 3번인 것부터 잘라서 보여주세요.”라는 뜻입니다. 실행해볼까요?
package javaStudy;
public class StringExam {
public static void main(String[] args) {
String str1 = "hello";
String str2 = "hello";
String str3 = new String("hello");
String str4 = new String("hello");
System.out.println(str1);
System.out.println(str1.substring(3));
}
}
실행결과
hello lo