提示:您可在线编辑运行本教程的实例 - 运行实例,去试试!
Java char是16位类型,用于表示Unicode字符。
public class Main { /* 来自 *NowJava.com - 时 代 Java*/ public static void main(String[] args) { char ch1 = 'a'; char ch2 = 65; /* ASCII code of 'A'*/ System.out.println("Value of char variable ch1 is :" + ch1); System.out.println("Value of char variable ch2 is :" + ch2); } }