1、 2 4 3 1 3 3 6 3 5 3 78 public StringBuffer public StringBuffer append(String str)append(String str)将参数字符串将参数字符串strstr追加到当前追加到当前StringBufferStringBuffer对象的后面对象的后面public char charAt(int public char charAt(int index)index)获取当前获取当前StringBufferStringBuffer对象对象在参数在参数indexindex位置上的字符位置上的字符public void publ
2、ic void setCharAt(int setCharAt(int index,char ch)index,char ch)将当前将当前StirngBufferStirngBuffer对象在对象在参数参数indexindex位置上的字符替换位置上的字符替换为参数字符为参数字符chch public insert(int public insert(int index,String str)index,String str)在当前在当前StringBufferStringBuffer对象的参数对象的参数indexindex位置上,插入一个字符串位置上,插入一个字符串strstrpublic
3、reverse()public reverse()将当前将当前StringBufferStringBuffer对象中的内对象中的内容逆置容逆置public delete(int public delete(int startIndex,int endIndex)startIndex,int endIndex)将当前将当前StringBufferStringBuffer对象中从参对象中从参数数startIndexstartIndex到参数到参数endIndex-1endIndex-1之间的内容删除之间的内容删除public replace(int public replace(int start
4、Index,int startIndex,int endIndex,String str)endIndex,String str)将当前将当前StringBufferStringBuffer对象中从参对象中从参数数startIndexstartIndex到参数到参数endIndex-1endIndex-1之间的内容替换为参数字符串之间的内容替换为参数字符串strstr 整型整型intintIntegerIntegerMAX_VALUE(231-1)/MIN_VALUE(-231)MAX_VALUE(231-1)/MIN_VALUE(-231)bytebyteByteByteMAX_VALUE(
5、27-1)/MIN_VALUE(-27)MAX_VALUE(27-1)/MIN_VALUE(-27)shortshortShortShortMAX_VALUE(215-1)/MIN_VALUE(-215)MAX_VALUE(215-1)/MIN_VALUE(-215)longlongLongLongMAX_VALUE(263-1)/MIN_VALUE(-263)MAX_VALUE(263-1)/MIN_VALUE(-263)浮点型浮点型floatfloatFloatFloatMAX_VALUE(2-2-23)MAX_VALUE(2-2-23)2127)/MIN_VALUE(2-149)2127
6、)/MIN_VALUE(2-149)doubledoubleDoubleDoubleMAX_VALUE(2-2-52)MAX_VALUE(2-2-52)21023)/MIN_VALUE(2-21023)/MIN_VALUE(2-1074)1074)字符型字符型charcharCharacterCharacterMAX_VALUE(MAX_VALUE(uFFFFuFFFF)/MIN_VALUE()/MIN_VALUE(u0000u0000)布尔型布尔型booleanbooleanBooleanBooleanTRUE/FALSETRUE/FALSE public static boolean pu
7、blic static boolean isDigit(char ch)isDigit(char ch)判断参数字符判断参数字符chch是否是数字字是否是数字字符,若是则返回符,若是则返回truetrue,否则返,否则返回回falsefalsepublic static boolean public static boolean isLetter(char ch)isLetter(char ch)判断参数字符判断参数字符chch是否是字母字是否是字母字符,若是则返回符,若是则返回truetrue,否则返,否则返回回falsefalsepublic static boolean public s
8、tatic boolean isLetterOrDigit(char ch)isLetterOrDigit(char ch)判断参数字符判断参数字符chch是否是字母字是否是字母字符或数字,若是则返回符或数字,若是则返回truetrue,否则返回否则返回falsefalsepublic static boolean public static boolean isLowerCase(char ch)isLowerCase(char ch)判断参数字符判断参数字符chch是否是小写字是否是小写字母,若是则返回母,若是则返回truetrue,否则返,否则返回回falsefalse public s
9、tatic boolean public static boolean isUpperCase(char ch)isUpperCase(char ch)判断参数字符判断参数字符chch是否是大写字是否是大写字母,若是则返回母,若是则返回truetrue,否则返,否则返回回falsefalsepublic static char public static char toLowerCase(char ch)toLowerCase(char ch)将参数字符将参数字符chch转换为小写字母转换为小写字母public static char public static char toUpperCas
10、e(char ch)toUpperCase(char ch)将参数字符将参数字符chch转换为大写字母转换为大写字母public static boolean public static boolean isSpaceChar(char ch)isSpaceChar(char ch)判断参数字符判断参数字符chch是否是空格字是否是空格字符,若是则返回符,若是则返回truetrue,否则返,否则返回回falsefalse public static String public static String valueOf(byte n)valueOf(byte n)将参数字节变量将参数字节变量n
11、 n转换为字符串转换为字符串public static String public static String valueOf(int n)valueOf(int n)将参数整型变量将参数整型变量n n转换为字符串转换为字符串public static String public static String valueOf(long n)valueOf(long n)将参数长整型变量将参数长整型变量n n转换为字符串转换为字符串public static String public static String valueOf(float n)valueOf(float n)将参数单精度实型变量
12、将参数单精度实型变量n n转换为字转换为字符串符串public static String public static String valueOf(double n)valueOf(double n)将参数双精度实型变量将参数双精度实型变量n n转换为字转换为字符串符串 public static double public static double abs(double a)abs(double a)返回返回a a的绝对值的绝对值public static double public static double max(double a,double b)max(double a,dou
13、ble b)返回返回a,ba,b的最大值的最大值public static double public static double min(double a,double b)min(double a,double b)返回返回a,ba,b的最小值的最小值public static double random()public static double random()产生一个产生一个0 0到到1 1之间的随机数之间的随机数不包括不包括0 0和和1 1 public static double public static double pow(double a,double b)pow(dou
14、ble a,double b)返回返回a a 的的b b次幂次幂public static double public static double sqrt(double a)sqrt(double a)返回返回a a的平方根的平方根public static double public static double log(double a)log(double a)返回返回a a的对数(以自然数为底)的对数(以自然数为底)public static double public static double sin(double a)sin(double a)返回返回a a的正弦值的正弦值public static double public static double asin(double a)asin(double a)返回返回a a的反正弦值的反正弦值