Java中怎么获取字符串里面的单个字符?

2024-11-29 14:54:17
推荐回答(1个)
回答1:

方法有很多种。
随便一种:
String a= "中国人";
char b=a.charAt(0);
System.out.println(b);