参考文章(https://blog.csdn.net/anita9999/article/details/82346552)
两种重载方式
format(String format, Object… args) 新字符串使用本地语言环境,制定字符串格式和参数生成格式化的新字符串。
format(Locale locale, String format, Object… args) 使用指定的语言环境,制定字符串格式和参数生成格式化的字符串
常用的类型
应用举例
高级用法
实例
throw new BusinessException(String.format(MessageType.receiveByOthers.getMsg(), verify.getConsumer()));
receiveByOthers("领取失败,此红包已经被%s领取"),
//verify.getConsumer()是获取领红包的人
通过这种方法来实现将硬编码转换为软编码