首先java基本类型:byte 、short、int、long、float、double、char、boolean
Java对应包装类:Byte、Short、Integer、Long、Float、Double、Character、Boolean
byte<short=char<int<long<float<double
character主要对单个字符进行操作
描述:此方法返回位于字符串的指定索引处的字符。该字符串的索引从零开始。
语法:public char charAt(intindex)
参数:index -- 返回字符的索引
返回值:该方法的返回指定索引处char值
For example :
public class Test {
public static void main(String args[]) {
String s ="Strings are immutable";
char result = s.charAt(8);
System.out.println(result);
}
}
result:a