출처: https://bumcrush.tistory.com/182 [맑음때때로 겨울]
반응형
public class ReveseString{
	public static void main(String[] args){
    
    ReverseString();
    }
    
    
    public static void ReverseString() {
		String str = "abc de";
		StringBuffer sb = new StringBuffer();
		sb.append(str);
		
		System.out.println(sb.reverse());
	}
}

 

StringBuffer 사용 간단 예제.

반응형

+ Recent posts