Slide 6
Slide 6 text
を変数で切り替えたい
“Hello, World!” World
String.format() or java.util.Formatter
String.format(“Hello, %s”, name);
new Formatter().format(“Hello, %s”, name)
.toString();
=
java.text.MessageFormat
MessageFormat.format(“Hello, {0}”, name);
変数が多いとフォーマット記述子と変数の対応が ...