Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我只是好奇,但是在调用带有参数的方法时,在 Java 之间'x'和Character.valueOf('x')在 Java 之间有什么区别?
'x'
Character.valueOf('x')
谢谢你。
'x'是一个字符原语
Character.valueOf('x')返回一个Character包含x
Character
x
相关:原始数据类型
Character.valueOf(char) 接受一个 char 并返回一个代表相同值的 Character 包装器实例。对其使用 toString() 会返回一个仅包含该单个字符的字符串。