mojo's Blog
StringBuffer 클래스 본문
import java.util.*;
public class Main {
public static void main(String[] args) {
// TODO Auto-generated method stub
Scanner scanner=new Scanner(System.in);
StringBuffer sb=new StringBuffer("This");
sb.append(" is pencil");
System.out.println(sb);
sb.insert(7, " my");
System.out.println(sb);
sb.replace(8, 10, "your");
System.out.println(sb);
sb.delete(8, 13);
System.out.println(sb);
sb.setLength(4);
System.out.println(sb);
scanner.close();
}
}
'Java' 카테고리의 다른 글
명품 JAVA Programming 제 6장 Open Challenge (0) | 2021.07.20 |
---|---|
Math 클래스 메소드 활용 (0) | 2021.07.20 |
String 관련 메소드 (0) | 2021.07.20 |
boxing and unboxing (0) | 2021.07.20 |
문자열을 기본 타입으로, 기본 타입 값을 문자열로 변환 (0) | 2021.07.20 |
Comments