报告以下错误:
示例:
MessageFormat.format("{wrong}", 1); // 不正确的索引
MessageFormat.format("{0", 1); // 不匹配的大括号
MessageFormat.format("'{0}", 1); // 不成对的引号
MessageFormat.format("It''''s {0}", 1); // 将打印“It''s”而非“It's”
MessageFormat.format("{0}", 1, 2); // 模式中未使用索引为 '1' 的实参
2023.2 最新变化