java 基本类型包装类,system类,Math类,Assrays类,大数据运算

时间:2022-06-01 22:06:34

实现字符串与基本数据之间转换

java  基本类型包装类,system类,Math类,Assrays类,大数据运算

将字符串转成基本数据类型方法

java  基本类型包装类,system类,Math类,Assrays类,大数据运算

例如:将字符串转成成int类型

 String str ="123";
int a =Integer.parseInt(str);
System.out.println(a);

将字符串转成double类型

     String str = "2.3";
double d =Double.parseDouble(str);
System.out.println(d);

将基本数据类型转换成字符串有3种方法

1.直接和字符串相拼接就是字符串,建议使用方便

 int a =123;
String aa =a+"";
System.out.println(aa);

2.调用String的valueOf方法

java  基本类型包装类,system类,Math类,Assrays类,大数据运算

调用String方法的valueof方法转

 int a =123;
String aa =String.valueOf(a);
System.out.println(aa);

3.调用包装类中的toString方法

java  基本类型包装类,system类,Math类,Assrays类,大数据运算

 int a =123;
String str =Integer.toString(a);
System.out.println(str);

system类

System类不能手动创建对象,因为构造方法被private修饰,阻止外界创建对象。System类中的都是static方法,类名访问即可。在JDK中,有许多这样的类。

java  基本类型包装类,system类,Math类,Assrays类,大数据运算

java  基本类型包装类,system类,Math类,Assrays类,大数据运算

currentTimeMillis() 获取当前系统时间与1970年01月01日00:00点之间的毫秒差值

exit(int status) 用来结束正在运行的Java程序。参数传入一个数字即可。通常传入0记为正常状态,其他为异常状态

gc() 用来运行JVM中的垃圾回收器,完成内存中垃圾的清除。

getProperty(String key) 用来获取指定(字符串名称)中所记录的系统属性信息

arraycopy方法,用来实现将源数组部分元素复制到目标数组的指定位置

练习一:验证for循环打印数字1-9999所需要使用的时间(毫秒)

 long start = System.currentTimeMillis();  //获取当前的毫秒数
for(int i=0;i<=9999;i++){
System.out.println(i);
}
long end = System.currentTimeMillis(); //获取打印完的毫秒数
System.out.println((end-start));

l 练习二:将src数组中前3个元素,复制到dest数组的前3个位置上

复制元素前:src数组元素[1,2,3,4,5],dest数组元素[6,7,8,9,10]

复制元素后:src数组元素[1,2,3,4,5],dest数组元素[1,2,3,9,10]

     int[] src = new int[]{1,2,3,4,5};
int[] dest = new int[]{6,7,8,9,10};
System.arraycopy(src, 0, dest, 0, 3);
for(int a:dest){
System.out.println(a);
}

练习三:循环生成100-999之间的的三位数并进行打印该数,当该数能被10整除时,结束运行的程序

     for(int i=101;i<=999;i++){
if(i%10==0){
System.exit(0);
}
System.out.println(i);
}

Math类

Math 类是包含用于执行基本数学运算的方法的数学工具类,如初等指数、对数、平方根和三角函数。

java  基本类型包装类,system类,Math类,Assrays类,大数据运算

 //绝对值
System.out.println(Math.abs(-99));
//向上取整
System.out.println(Math.ceil(12.2));//13.0
System.out.println(Math.ceil(12.9));//13.0
//向下取整
System.out.println(Math.floor(12.2));//12.0
System.out.println(Math.floor(12.9));//12.0
//取最大值
System.out.println(Math.max(555,222));
//取最小值
System.out.println(Math.min(555, 333));
//取次幂
System.out.println(Math.pow(2, 3));
//取随机数
System.out.println(Math.random());
//四舍五入
System.out.println(Math.round(12.4));
//π
System.out.println(Math.PI);

Assrays类

此类包含用来操作数组(比如排序和搜索)的各种方法。需要注意,如果指定数组引用为 null,则访问此类中的方法都会抛出空指针异常NullPointerException。

java  基本类型包装类,system类,Math类,Assrays类,大数据运算

 public static void method01(){
int[] arr ={3,6,9,11,15};
//返回指定值所对应的索引值(数组必须有序)
//如果不存在,索引值=(-当前的索引值-1)
int i =Arrays.binarySearch(arr, 9);
System.out.println(i);
}
public static void method02(){
//数组升序排序
int[] arr={5,7,8,9,10};
Arrays.sort(arr);
System.out.println(Arrays.toString(arr));
for(int a:arr){
System.out.println(a);
}

java中long型为最大整数类型,对于超过long型的数据如何去表示呢.在Java的世界中,超过long型的整数已经不能被称为整数了,它们被封装成BigInteger对象.在BigInteger类中,实现四则运算都是方法来实现,并不是采用运算符.

java  基本类型包装类,system类,Math类,Assrays类,大数据运算

public static void method(){
BigInteger b1 =new BigInteger("100000000000000000000000000000000");
BigInteger b2 =new BigInteger("200000000000000000000000000000000");
//加法
System.out.println(b1.add(b2));
//减法
System.out.println(b2.subtract(b1));
//乘法
System.out.println(b1.multiply(b2));
//除法
System.out.println(b2.divide(b1));
}

1.1 BigDecimal

在程序中执行下列代码,会出现什么问题?

System.out.println(0.09 + 0.01);

System.out.println(1.0 - 0.32);

System.out.println(1.015 * 100);

System.out.println(1.301 / 100);

 double和float类型在运算中很容易丢失精度,造成数据的不准确性,Java提供我们BigDecimal类可以实现浮点数据的高精度运算

java  基本类型包装类,system类,Math类,Assrays类,大数据运算

 public static void method02(){
BigDecimal bd =new BigDecimal("0.09");
BigDecimal bd1 =new BigDecimal("0.01");
//加法
System.out.println(bd1.add(bd1));
//减法
System.out.println(bd1.subtract(bd));
//乘法
System.out.println(bd.multiply(bd1));
//除法
System.out.println(bd1.divide(bd,BigDecimal.ROUND_FLOOR,3));
}