欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

JAVA基础,Arrays和数学工具类Math的常用方法(黑马视频笔记)

程序员文章站 2022-06-23 09:43:59
java.util.Arrays是一个与数组相关的工具类,里面提供了大量静态方法,用来实现数组常见的操作。常用方法:public static String toString(数组名),将参数数组变成字符串(按照默认格式:[元素1,元素2…])实例:int[] array1 = {1,2,3,4};String str1 = Arrays.toString(array1);System.out.println(str1);运行结果:[1, 2, 3, 4]public static...

java.util.Arrays是一个与数组相关的工具类,里面提供了大量静态方法,用来实现数组常见的操作。
常用方法:

  • public static String toString(数组名),将参数数组变成字符串(按照默认格式:[元素1,元素2…])
    实例:
int[] array1 = {1,2,3,4};
String str1 = Arrays.toString(array1);
System.out.println(str1);

运行结果:

[1, 2, 3, 4]
  • public static void sort(数组名),按照默认升序对数组的元素排序。
    实例:数字排序
int[] array2={8,3,5,7,1,9,2};
Arrays.sort(array2);
String str2 = Arrays.toString(array2);
System.out.println(str2);

运行结果:

[1, 2, 3, 5, 7, 8, 9]

实例:字符串排序

String[] array3 = {"aaa","ccc","bbb"};
Arrays.sort(array3);
String str3 = Arrays.toString(array3);
System.out.println(str3);

运行结果:

[aaa, bbb, ccc]

java.util.Math类是数学相关的工具类,里面提供了大量的静态方法,完成与数学运算相关的工作。
常用方法:

  • public static double abs(double num); //获取绝对值
  • public static double ceil(double num); //向上取整
  • public static double floor(double num); //向下取整
  • public static long round(double num); //四舍五入
  • Math.PI代表近似的圆周率常量(double)
    实例:
//获取绝对值
System.out.println(Math.abs(-2.5));
//向上取整
System.out.println(Math.ceil(3.1));
//向下取整
System.out.println(Math.floor(2.9));
//四舍五入
System.out.println(Math.round(20.4));
//圆周率常量
System.out.println(Math.PI);

运行结果:

2.5
4.0
2.0
20
3.141592653589793

本文地址:https://blog.csdn.net/qq_45028907/article/details/107298473