What is the difference between char and Character in Java?

前端 未结 4 963
失恋的感觉
失恋的感觉 2021-02-01 07:31

I need to know what is the difference between char and Character in Java because when I was making a java program, the char worked while the Character didn\'t work.

4条回答
  •  忘掉有多难
    2021-02-01 07:55

    Character is an Object - thus contains a number of static methods e.g. valueOf(char),toUpperCase()

    where char is a primitive data-type

提交回复
热议问题