String.format()方法

参考文章(https://blog.csdn.net/anita9999/article/details/82346552)

两种重载方式

format(String format, Object… args) 新字符串使用本地语言环境,制定字符串格式和参数生成格式化的新字符串。
format(Locale locale, String format, Object… args) 使用指定的语言环境,制定字符串格式和参数生成格式化的字符串

常用的类型

常用类型

应用举例

例子

高级用法

image.png

image.png

image.png

实例

throw new BusinessException(String.format(MessageType.receiveByOthers.getMsg(), verify.getConsumer()));
receiveByOthers("领取失败,此红包已经被%s领取"),
//verify.getConsumer()是获取领红包的人

通过这种方法来实现将硬编码转换为软编码

你可能感兴趣的:(String.format()方法)