Skip to content

Instantly share code, notes, and snippets.

@ron623
Created January 30, 2015 03:28
Show Gist options
  • Save ron623/376cb20fbfab499ce15a to your computer and use it in GitHub Desktop.
Save ron623/376cb20fbfab499ce15a to your computer and use it in GitHub Desktop.
今度はStringBuilderでやってみる
// 今度はStringBuilderでやってみる
StringBuilder sbr = new StringBuilder("***渡す文字列***");
// createStringメソッド内でsbr文字列の加工を行う
stringPrm.createChangeString(sbr);
// 引数として渡したsbrがどうなったか確認
System.out.println(sbr);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment