String类
判断功能的方法
public boolean equals (Object anObject) :将此字符串与指定对象进行比较。
public boolean equalsIgnoreCase (String anotherString) :将此字符串与指定对象进行比较,忽略大小写。
Object 是” 对象”的意思,也是一种引用类型。作为参数类型,表示任意对 象都可以传递到方法中。
获取功能的方法
public int length ()
:返回此字符串的长度。public String concat (String str)
:将指定的字符串连接到该字符串的末尾。public char charAt (int index)
:返回指定索引处的 char值。public int indexOf (String str)
:返回指定子字符串第一次出现在该字符串内的索引。public String substring (int beginIndex)
:返回一个子字符串,从beginIndex开始截取字符串到字符串结尾。public String substring (int beginIndex, int endIndex)
:返回一个子字符串,从beginIndex到endIndex截取字符串。含beginIndex,不含endIndex。(包前不包后)
转换功能的方法
public char[] toCharArray ()
:将此字符串转换为新的字符数组。public byte[] getBytes ()
:使用平台的默认字符集将该 String编码转换为新的字节数组。public String toLowerCase()
:使用默认语言环境的规则将此 String所有字符转换为小写。public String toUpperCase()
:将此 String所有字符转换为大写,使用默认语言环境的规则。public String replace (CharSequence target, CharSequence replacement)
:将与target匹配的字符串使用replacement字符串替换。
分割功能的方法
public String[] split(String regex)
:将此字符串按照给定的regex(规则)拆分为字符串数组。
##Arrays类
操作前需导包:java.util.Arrays
public static String toString(int[] a)
:返回指定数组内容的字符串表示形式。
public static void sort(int[] a)
:对指定的 int 型数组按数字升序进行排序。
Random使用步骤
##Random类
java.util.Random
:该类需要 import导入使后使用。
public Random()
:创建一个新的随机数生成器。
public int nextInt(int n)
:返回一个伪随机数,范围在 0 (包括)和 指定值 n (不包括)之间的int 值.(求100-999之间的一个数的话,可以先nextint(1000)+100)
一般格式:
Random ran = new Random();
int a= ran.nextInt();
##Math
public static double abs(double a)
:返回 double 值的绝对值
public static double ceil(double a)
:返回大于等于参数的最小的整数(向上取整)
public static double floor(double a)
:返回小于等于参数最大的整数。(向下取整)
public static long round(double a)
:返回最接近参数的 long。(四舍五入)