一些杂七杂八(重写sort,BigInteger&&BigDecimal)

BigInteger&&BigDecimal

package bignum;

import java.math.BigDecimal;
import java.math.BigInteger;

/**
 * @author 飞行札记
 * @Version 1.0
 */
public class BigInteger_ {
    public static void main(String[] args) {
        BigInteger bigInteger = new BigInteger("99999999999999999999999999998");
        System.out.println(bigInteger);

        BigInteger bigInteger1 = new BigInteger("2");
        BigInteger add = bigInteger.add(bigInteger1);
        System.out.println(add);

        BigInteger subtract = bigInteger.subtract(bigInteger1);
        System.out.println(subtract);

        BigInteger multiply = bigInteger.multiply(bigInteger1);
        System.out.println(multiply);

        BigInteger divide = bigInteger.divide(bigInteger1);
        System.out.println(divide);

        BigDecimal bigDecimal = new BigDecimal("1.999999999999999999999999999999999999");
        System.out.println(bigDecimal);

        BigDecimal bigDecimal1 = new BigDecimal("2");
        BigDecimal add1 = bigDecimal.divide(bigDecimal1,BigDecimal.ROUND_CEILING);//保留分子精度
        System.out.println(add1);

    }
}

重写sort

import java.util.Arrays;
import java.util.Comparator;

/**
 * @author 飞行札记
 * @Version 1.0
 */
public class ArrayExercise {
    public static void main(String[] args) {
        Book[] books = new Book[4];
        books[0] = new Book("红楼梦", 100);
        books[1] = new Book("金瓶梅", 90);
        books[2] = new Book("青年文摘20年", 5);
        books[3] = new Book("java从入门到放弃", 300);
        Arrays.sort(books, new Comparator<Book>() {//泛型
                    @Override
                    public int compare(Book o1, Book o2) {
                        if (o1.price - o2.price > 0)
                            return 1;
                        else if (o1.price - o2.price < 0){
                            return -1;
                        }else {
                            return 0;
                        }
                    }
                }

        );
        for (int i = 0; i < books.length; i++) {
            System.out.println(books[i].name + books[i].price);
        }
    }
}

class Book {
    public String name;
    public double price;

    public Book(String name, double price) {
        this.name = name;
        this.price = price;
    }
}
  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值