Java 中的字符字面量和字符串字面量之间的区别是什么?
字符字面量表示字母(大小写)、数字(0 到 9)、特殊字符(@、?、& 等)和转义序列,例如
,\b 等。
而字符串字面量表示 String 类的对象。
示例
public class LiteralsExample { public static void main(String args[]){ char ch = 'H'; String str = "Hello"; System.out.println("Value of character: "+ch); System.out.println("Value of string: "+str); } }
输出
Value of character: H Value of string: Hello
广告