高精度数据类型
java.math包下
高精度类型不能用equals比较
要用compareTo比较
0 相等
1 前面数要大
-1 后面数要大
add 加法
divide 除法
subtract 减法
multiply 乘法
国际化
java.text包下
根据你当前的语言环境 加载不同的语言资源包 展示不同的语言环境
internationalization 国际化 简称i18n
ResourceBundle 加载国际化资源文件
MessageFormat 格式化处理的
Locale 语言环境 切换语言环境的
使用步骤:
1.在项目中新建一个资源文件夹config
2.在资源文件夹中新建属性文件message .properties、message_en_US.properties、message_zh_CN.properties
3.在message .properties里面编写我们的国际化的资源,例如:
contact=Hello,Today is
4.在message_en_US.properties里面写英文资源
contact=Hello,Today is {0}
5.在message_zh_CN.properties里面写中文资源
contact=你好,今天是{0}
其中的{0}为占位符,使用 MessageFormat.format(contact,“Sunday”);方法,Sunday即可替换{0}