JAVA常用类总结(一)

JAVA常用类总结(一)

String class

  • String 类代表字符串对象
  • 常用方法

charAt(int index) — 返回指定索引的char值

public static void main(String[] args) {
    String str = "HelloWorld";
    System.out.println(str.charAt(2));
}

codePointAt(int index) — 返回指定索引处的字符
codePointBefore(int index) — 返回指定索引之前的字符
codePointCount(int index1, int index2) — 回此 String 的指定文本范围中的 Unicode 代码点数

public static void main(String[] args) {
    String str = "HelloWorld";
    // 获取下标为0的unicode码值
    System.out.println(str.codePointAt(0));
    // 获取下标为2之前一个的的unicode码值
    System.out.println(str.codePointBefore(2));
    // 获取下标2到5之间的字符个数
    System.out.println(str.codePointCount(2, 5));
}

compareTo(String str) — 比较字符串

  • 注:compareToIgnoreCase(String str) — 不区分大小写的比较字符串
public static void main(String[] args) {
    String str = "HelloWorld";
    //输出 9
    System.out.println(str.compareTo("H"));
    //输出 -32
    System.out.println(str.compareTo("helloWorld"));
    //输出 -32
    System.out.println(str.compareTo("helloW"));
    //输出 0
    System.out.println(str.compareTo("HelloWorld"));
}

concat(String str) — 拼接字符串

public static void main(String[] args) {
    String str = "Hello";
    System.out.println(str.concat(" Conxcat Function"));
}

contains(CharSequence s) — 当且仅当此字符串包含指定的 char 值序列时,返回 true。

public static void main(String[] args) {
    String str = "Hello";
    CharSequence c = "H";
    System.out.println(str.contains(c));
}

endsWith(String str) — 测试此字符串是否以指定的后缀结束。

public static void main(String[] args) {
    String str = "Hello";
    System.out.println(str.endsWith("o"));
}

equals(Object obj) — 将此字符串与指定的对象比较。
equalsIgnoreCase(String str) — 将此 String 与另一个 String 比较,不考虑大小写。

public static void main(String[] args) {
    String str = "Hello";
    String str1 = new String("hello");
    System.out.println("Str = " + str + "\nStr1 = " + str1);
    System.out.println(str == str1);
    System.out.println(str.equals(str1));
    //不考虑大小写
    System.out.println(str.equalsIgnoreCase(str1));
}

indexOf(int ch)\indexOf(String str)\indexOf(int ch, int fromIndex)\indexOf(String str, int fromIndex)

public static void main(String[] args) {
    String str = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
    //indexOf(unicode 码) --- 101 e
    System.out.println(str.indexOf(101));
    //indexOf(Str)
    System.out.println(str.indexOf("BCD"));
    //indexOf(ch, fromIndex)
    System.out.println(str.indexOf(101, 31));
    //indexOf(Str, fromIndex)
    System.out.println(str.indexOf("BCD", 2));
}

isEmpty() — 判断是否为null

public static void main(String[] args) {
    String str = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
    System.out.println(str.isEmpty());
}

length() — 获取字符串长度

public static void main(String[] args) {
    String str = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
    System.out.println(str.length());
}

replace(CharSequence target, CharSequence replacement) — 替换字符串

public static void main(String[] args) {
    String str = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
    System.out.println(str.replace("a", "A"));
    System.out.println(str);
}

replaceAll(String regex, String replacement) — 使用给定的 replacement 替换此字符串所有匹配给定的正则表达式的子字符串。

public static void main(String[] args) {
    String str = "ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789";
    System.out.println(str.replaceAll("ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789", "A"));
    System.out.println(str);
}

split(String str) — 拆分字符串

public static void main(String[] args) {
    String str = "你好,世界,Hello,World";
    String[] strs = str.split("\\,");
    for (int i = 0; i < strs.length; i++) {
        System.out.println(strs[i]);
    }
}

valueOf(value) — 返回value的字符串形式

public static void main(String[] args) {
    String num = String.valueOf(12138);
    System.out.println(num);
    //判断 String.valueOf(12138) 是否是String的对象
    System.out.println(String.valueOf(12138) instanceof String);
}

Date

  • Date 标识特定的瞬间,精确到毫秒
    JAVA常用类总结(一)_第1张图片
  • 常用方法

after() — 测试此日期是否在指定日期之后。

public static void main(String[] args) {
    Date date = new Date(119,5,7);
    System.out.println(date.after(new Date()));
}

before — 测试此日期是否在指定日期之前。

public static void main(String[] args) {
    Date date = new Date();
    System.out.println(date.before(new Date(119,5,7)));
}

部分get方法

public static void main(String[] args) {
    Date date = new Date();
    System.out.println(date);
    //获取月份-1的值
    System.out.println(date.getMonth());
    System.out.println(date.getDate());
    System.out.println(date.getDay());
    //时间戳
    System.out.println(date.getTime());
    System.out.println(date.getHours());
    System.out.println(date.getMinutes());
    System.out.println(date.getSeconds());
}

时间戳在线转换

日期转换

public static void main(String[] args) throws ParseException {
    Date date = new Date();
    DateFormat df = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");
    System.out.println(df.format(date));
}

Math

  • Math 类包含了执行基本数学运算的方法
  • 常用方法

abs(value) — 获取value的绝对值

public static void main(String[] args) {
    System.out.println(Math.abs(-1));
}

acos(value) — 返回一个值的反余弦值,类似的还有 asin(value)

public static void main(String[] args) {
    System.out.println(Math.acos(0) == Math.PI/2);
}

sqrt(value) — 返回正确舍入的 double 值的正平方根。

public static void main(String[] args) {
    System.out.println(Math.sqrt(4));
}

太多了,不一一试了

static double abs(double a) 
          返回 double 值的绝对值。 
static float abs(float a) 
          返回 float 值的绝对值。 
static int abs(int a) 
          返回 int 值的绝对值。 
static long abs(long a) 
          返回 long 值的绝对值。 
static double acos(double a) 
          返回一个值的反余弦;返回的角度范围在 0.0 到 pi 之间。 
static double asin(double a) 
          返回一个值的反正弦;返回的角度范围在 -pi/2 到 pi/2 之间。 
static double atan(double a) 
          返回一个值的反正切;返回的角度范围在 -pi/2 到 pi/2 之间。 
static double atan2(double y, double x) 
          将矩形坐标 (x, y) 转换成极坐标 (r, theta),返回所得角 theta。 
static double cbrt(double a) 
          返回 double 值的立方根。 
static double ceil(double a) 
          返回最小的(最接近负无穷大)double 值,该值大于等于参数,并等于某个整数。 
static double copySign(double magnitude, double sign) 
          返回带有第二个浮点参数符号的第一个浮点参数。 
static float copySign(float magnitude, float sign) 
          返回带有第二个浮点参数符号的第一个浮点参数。 
static double cos(double a) 
          返回角的三角余弦。 
static double cosh(double x) 
          返回 double 值的双曲线余弦。 
static double exp(double a) 
          返回欧拉数 e 的 double 次幂的值。 
static double expm1(double x) 
          返回 ex -1。 
static double floor(double a) 
          返回最大的(最接近正无穷大)double 值,该值小于等于参数,并等于某个整数。 
static int getExponent(double d) 
          返回 double 表示形式中使用的无偏指数。 
static int getExponent(float f) 
          返回 float 表示形式中使用的无偏指数。 
static double hypot(double x, double y) 
          返回 sqrt(x2 +y2),没有中间溢出或下溢。 
static double IEEEremainder(double f1, double f2) 
          按照 IEEE 754 标准的规定,对两个参数进行余数运算。 
static double log(double a) 
          返回 double 值的自然对数(底数是 e)。 
static double log10(double a) 
          返回 double 值的底数为 10 的对数。 
static double log1p(double x) 
          返回参数与 1 之和的自然对数。 
static double max(double a, double b) 
          返回两个 double 值中较大的一个。 
static float max(float a, float b) 
          返回两个 float 值中较大的一个。 
static int max(int a, int b) 
          返回两个 int 值中较大的一个。 
static long max(long a, long b) 
          返回两个 long 值中较大的一个。 
static double min(double a, double b) 
          返回两个 double 值中较小的一个。 
static float min(float a, float b) 
          返回两个 float 值中较小的一个。 
static int min(int a, int b) 
          返回两个 int 值中较小的一个。 
static long min(long a, long b) 
          返回两个 long 值中较小的一个。 
static double nextAfter(double start, double direction) 
          返回第一个参数和第二个参数之间与第一个参数相邻的浮点数。 
static float nextAfter(float start, double direction) 
          返回第一个参数和第二个参数之间与第一个参数相邻的浮点数。 
static double nextUp(double d) 
          返回 d 和正无穷大之间与 d 相邻的浮点值。 
static float nextUp(float f) 
          返回 f 和正无穷大之间与 f 相邻的浮点值。 
static double pow(double a, double b) 
          返回第一个参数的第二个参数次幂的值。 
static double random() 
          返回带正号的 double 值,该值大于等于 0.0 且小于 1.0。 
static double rint(double a) 
          返回最接近参数并等于某一整数的 double 值。 
static long round(double a) 
          返回最接近参数的 long。 
static int round(float a) 
          返回最接近参数的 int。 
static double scalb(double d, int scaleFactor) 
          返回 d × 2scaleFactor,其舍入方式如同将一个正确舍入的浮点值乘以 double 值集合中的一个值。 
static float scalb(float f, int scaleFactor) 
          返回 f × 2scaleFactor,其舍入方式如同将一个正确舍入的浮点值乘以 float 值集合中的一个值。 
static double signum(double d) 
          返回参数的符号函数;如果参数为 0,则返回 0;如果参数大于 0,则返回 1.0;如果参数小于 0,则返回 -1.0。 
static float signum(float f) 
          返回参数的符号函数;如果参数为 0,则返回 0;如果参数大于 0,则返回 1.0;如果参数小于 0,则返回 -1.0。 
static double sin(double a) 
          返回角的三角正弦。 
static double sinh(double x) 
          返回 double 值的双曲线正弦。 
static double sqrt(double a) 
          返回正确舍入的 double 值的正平方根。 
static double tan(double a) 
          返回角的三角正切。 
static double tanh(double x) 
          返回 double 值的双曲线余弦。 
static double toDegrees(double angrad) 
          将用弧度表示的角转换为近似相等的用角度表示的角。 
static double toRadians(double angdeg) 
          将用角度表示的角转换为近似相等的用弧度表示的角。 
static double ulp(double d) 
          返回参数的 ulp 大小。 
static float ulp(float f) 
          返回参数的 ulp 大小。 

你可能感兴趣的:(Java)