java.lang.StringBufferクラスの使い方

サンプルコード

package com.cft;

public class StringBufferDemo {

public static void main(String[] args) {
// StringBufferを宣言する
StringBuffer strA = new StringBuffer(“秋葉原");
StringBuffer strB = new StringBuffer(“品川");

// append()で文字列を結合する
strA.append(strB);
System.out.println(strA);

// insert()で文字列”と”を挿入する
strA.insert(3, “と");
System.out.println(strA);
}

}

実行結果

秋葉原品川
秋葉原と品川

Software

Posted by arkgame