1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

文字列フォーマットの標準API

Posted at

String.format

String#format.java
String formated = String.format("私は%sです。", "太郎");

MassageFormat#format

Message#format.java
String template = "私は{0}です。";
String formated = MessageFormat.format(template, "太郎");

パフォーマンス

MassageFormatの方が断然早い。

API 10,000回実行 100,000回実行
String#format 0.2269983S 1.2679988S
Message#format 0.0730008S 0.2999999S
1
0
2

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?