一、JAVA常用API
java.lang.Math
提供sin, cos, tan, exp, log, log10 等类方法,PI和E等类字段
java.lang.String(StringBuilder线程不安全,StringBuffer线程安全)
char charAt(int index)
返回给定位置的代码单元
boolean equals(Object other)
boolean equalsIngoreCase(String other)如果字符串与other相等,返回true
忽略大小写int length()返回字符串的长度String substring(int beginIndex)
String substring(int beginIndex, int endIndex)返回一个新字符串,包含原始字符串从beginIndex到串尾或到endIndex-1的所有代码单元String toLowerCase()
String toUpperCase()
返回小写字符串
返回大写字符串
int indexOf(String str[, int fromIndex])
int lastIndexOF(String str[, int fromIndex])返回第一个/最后一个子串的位置,从起始位置或者fromIndex开始
java.util.Scanner
for each循环
for(variable : collection) statement
collection这一集合表达式必须是一个数组或者是一个实现了Iterable接口的类对象
java.util.Arrays
数组长度
java.util.Radom
java.lang.Object
java.lang.Class