IT数码 购物 网址 头条 软件 日历 阅读 图书馆
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
图片批量下载器
↓批量下载图片,美女图库↓
图片自动播放器
↓图片自动播放器↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁
 
   -> Java知识库 -> java中的常用类 -> 正文阅读

[Java知识库]java中的常用类

1. 字符串相关类String 、StringBuffer 、StringBuilder

1.1 String

概述

  1. String声明为final的,不可被继承
  2. String实现了Serializable接口:表示字符串是支持序列化的。 实现了Comparable接口:表示String可以比较大小。
  3. String内部定义了final char[] value用于存储字符串数据。
  4. 通过字面量的方式(区别于new给一个字符串赋值,此时的字符串值声明在字符串常量池中)。
  5. 字符串常量池中是不会存储相同内容(使用String类的equals()比较,返回true)的字符串的。
    String实例化
    String实例化有如下4种,
String s1 = "Hello World";

Strng s2 = new String();

String s3 = new String(String对象);

String s4 = new String(char[] a);

String s5 = new String(char[] a,int startIndex, int endIndex);

每种的内存解析如下:
在这里插入图片描述
在这里插入图片描述
小练习
在这里插入图片描述
结论:

  • 常量与常量的拼接结果在常量池。且常量池中不会存在相同内容的常量。
  • 只要其中有一个是变量,结果就在堆中
  • 如果拼接的结果调用intern()方法,返回值就在常量池中

常用方法
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

1.2 StringBuffer && StringBuilder

java.lang.StringBuffer代表可变的字符序列,JDK1.0中声明,可以对字符串内容进行增删,此时不会产生新的对象,很多方法与String相同。作为参数传递时,方法内部可以改变值。StringBuffer类不同于String,其对象必须使用构造器生成。有三个构造器:

StringBuffer():初始容量为16的字符串缓冲区
StringBuffer(int size):构造指定容量的字符串缓冲区
StringBuffer(String str):将内容初始化为指定字符串内容

常用方法
在这里插入图片描述
在这里插入图片描述
补充说明:当使用insert、append增加元素时,底层数组容量不足时,默认情况下,扩容为原来容量的2倍 + 2,同时将原数组中的元素复制到新的数组中。

至于StringBuilder,和 StringBuffer 非常类似,均代表可变的字符序列,而且提供相关功能的方法也一样,在此不多赘述。
String、StringBuffer、StringBuilder比较?

String:不可变的字符序列;底层使用char[]存储
StringBuffer:可变的字符序列;线程安全的,效率低;底层使用char[]存储
StringBuilder:可变的字符序列;jdk5.0新增的,线程不安全的,效率高;底层使用char[]存储

2. JDK8前的时间日期API

架构图
在这里插入图片描述
1. java.lang.System类
System类提供的public static long currentTimeMillis()用来返回当前时间与1970年1月1日0时0分0秒之间以毫秒为单位的时间差。此方法适于计算时间差。
栗子:

        long start = System.currentTimeMillis();
        for (int i = 0; i < 10000; i++) {
        }
        long end = System.currentTimeMillis();
        System.out.println("循环花费时间:" + (end - start) + "ms");

2. java.util.Date类

  • 构造器:

Date():使用无参构造器创建的对象可以获取本地当前时间。
Date(long date)

  • 常用方法

getTime():返回自 1970 年 1 月 1 日 00:00:00 GMT 以来此 Date 对象表示的毫秒数。
toString():把此 Date 对象转换为以下形式的 String: dow mon dd hh:mm:ss zzz yyyy 其中: dow 是一周中的某一天 (Sun, Mon, Tue,Wed, Thu, Fri, Sat),zzz是时间标准。
其它很多方法都过时了。

        Date date = new Date();//以当前时间戳构建Date
        System.out.println(date);//Mon Jun 13 11:33:11 CST 2022

        long time = date.getTime();//返回当前时间戳
        System.out.println(time);

        System.out.println(date.toString());//Mon Jun 13 11:36:26 CST 2022 ,将Date装换为String

3. java.text.SimpleDateFormat类

  • Date类的API不易于国际化,大部分被废弃了,java.text.SimpleDateFormat类是一个不与语言环境有关的方式来格式化和解析日期的具体类。它允许进行格式化:日期->文本、解析:文本->日期
  • 格式化:

SimpleDateFormat() :默认的模式和语言环境创建对象
public SimpleDateFormat(String pattern):该构造方法可以用参数pattern
指定的格式创建一个对象,该对象调用:
public String format(Date date):方法格式化时间对象date

  • 解析:

public Date parse(String source):从给定字符串的开始解析文本,以生成
一个日期。

        Date date = new Date();//以当前时间戳构建Date
        SimpleDateFormat sdf = new SimpleDateFormat("yyyy年MM月dd日");
        System.out.println(sdf.format(date));//格式化输出
        //解析
        String text = "2022年06月13日";
        try {
            System.out.println(sdf.parse(text));
        } catch (ParseException e) {
            e.printStackTrace();
        }

4. java.util.Calendar(日历)类

  • Calendar是一个抽象基类,主用用于完成日期字段之间相互操作的功能。
  • 获取Calendar实例的方法

使用Calendar.getInstance()方法
调用它的子类GregorianCalendar的构造器。

  • 一个Calendar的实例是系统时间的抽象表示,通过get(int field)方法来取得想要的时间信息。比如YEAR、MONTH、DAY_OF_WEEK、HOUR_OF_DAY 、MINUTE、SECOND

public void set(int field,int value)
public void add(int field,int amount)
public final Date getTime()
public final void setTime(Date date)

  • 注意:

获取月份时:一月是0,二月是1,以此类推,12月是11
获取星期时:周日是1,周二是2 , 。。。。周六是7

        Calendar calendar = Calendar.getInstance(); //获取Calendar实例
        System.out.println(calendar.getTime());//获取Calendar实例中的Date对象
        System.out.println(calendar.get(Calendar.DAY_OF_MONTH));//获取一个月中的第几天
        Date date = new Date(123456543234L);
        calendar.setTime(date);//设置calendar中的Date
        System.out.println(calendar.getTime());

3. JDK8中新日期时间API

旧时间API面临的问题如下:
可变性:像日期和时间这样的类应该是不可变的。
偏移性:Date中的年份是从1900开始的,而月份都从0开始。
格式化:格式化只对Date有用,Calendar则不行。
此外,它们也不是线程安全的;不能处理闰秒等。

新时间API涉及到的包:
在这里插入图片描述

3.1 本地日期、本地时间、本地日期时间的使用:LocalDate / LocalTime / LocalDateTime

常用的方法:
在这里插入图片描述

        //now():获取当前的日期、时间、日期+时间
        LocalDate localDate = LocalDate.now();
        LocalTime localTime = LocalTime.now();
        LocalDateTime localDateTime = LocalDateTime.now();

        System.out.println(localDate);
        System.out.println(localTime);
        System.out.println(localDateTime);

        //of():设置指定的年、月、日、时、分、秒。没有偏移量
        LocalDateTime localDateTime1 = LocalDateTime.of(2020, 10, 6, 13, 23, 43);
        System.out.println(localDateTime1);


        //getXxx():获取相关的属性
        System.out.println(localDateTime.getDayOfMonth());
        System.out.println(localDateTime.getDayOfWeek());
        System.out.println(localDateTime.getMonth());
        System.out.println(localDateTime.getMonthValue());
        System.out.println(localDateTime.getMinute());

        //体现不可变性
        //withXxx():设置相关的属性
        LocalDate localDate1 = localDate.withDayOfMonth(22);
        System.out.println(localDate);
        System.out.println(localDate1);


        LocalDateTime localDateTime2 = localDateTime.withHour(4);
        System.out.println(localDateTime);
        System.out.println(localDateTime2);

        //不可变性
        LocalDateTime localDateTime3 = localDateTime.plusMonths(3);
        System.out.println(localDateTime);
        System.out.println(localDateTime3);

        LocalDateTime localDateTime4 = localDateTime.minusDays(6);
        System.out.println(localDateTime);
        System.out.println(localDateTime4);

3.2 瞬时类:Instant

java.time包通过值类型Instant提供机器视图,不提供处理人类意义上的时间单位。Instant表示时间线上的一点,而不需要任何上下文信息,它只是简单的表示自1970年1月1日0时0分0秒(UTC)开始的秒
数。因为java.time包是基于纳秒计算的,所以Instant的精度可以达到纳秒级。
常用方法:
在这里插入图片描述

        //now():获取本初子午线对应的标准时间
        Instant instant = Instant.now();
        System.out.println(instant);//2019-02-18T07:29:41.719Z

        //添加时间的偏移量
        OffsetDateTime offsetDateTime = instant.atOffset(ZoneOffset.ofHours(8));
        System.out.println(offsetDateTime);//2019-02-18T15:32:50.611+08:00

        //toEpochMilli():获取自1970年1月1日0时0分0秒(UTC)开始的毫秒数  ---> Date类的getTime()
        long milli = instant.toEpochMilli();
        System.out.println(milli);

        //ofEpochMilli():通过给定的毫秒数,获取Instant实例  -->Date(long millis)
        Instant instant1 = Instant.ofEpochMilli(1550475314878L);
        System.out.println(instant1);

3.3. 日期时间格式化类:DateTimeFormatter

实例化:
预定义的标准格式。如:ISO_LOCAL_DATE_TIME;ISO_LOCAL_DATE;ISO_LOCAL_TIME
本地化相关的格式。如:ofLocalizedDateTime(FormatStyle.LONG)
自定义的格式。如:ofPattern(“yyyy-MM-dd hh:mm:ss”)
常用方法:
在这里插入图片描述

//        方式一:预定义的标准格式。如:ISO_LOCAL_DATE_TIME;ISO_LOCAL_DATE;ISO_LOCAL_TIME
        DateTimeFormatter formatter = DateTimeFormatter.ISO_LOCAL_DATE_TIME;
        //格式化:日期-->字符串
        LocalDateTime localDateTime = LocalDateTime.now();
        String str1 = formatter.format(localDateTime);
        System.out.println(localDateTime);
        System.out.println(str1);//2019-02-18T15:42:18.797

        //解析:字符串 -->日期
        TemporalAccessor parse = formatter.parse("2019-02-18T15:42:18.797");
        System.out.println(parse);

//        方式二:
//        本地化相关的格式。如:ofLocalizedDateTime()
//        FormatStyle.LONG / FormatStyle.MEDIUM / FormatStyle.SHORT :适用于LocalDateTime
        DateTimeFormatter formatter1 = DateTimeFormatter.ofLocalizedDateTime(FormatStyle.LONG);
        //格式化
        String str2 = formatter1.format(localDateTime);
        System.out.println(str2);//2019年2月18日 下午03时47分16秒


//      本地化相关的格式。如:ofLocalizedDate()
//      FormatStyle.FULL / FormatStyle.LONG / FormatStyle.MEDIUM / FormatStyle.SHORT : 适用于LocalDate
        DateTimeFormatter formatter2 = DateTimeFormatter.ofLocalizedDate(FormatStyle.MEDIUM);
        //格式化
        String str3 = formatter2.format(LocalDate.now());
        System.out.println(str3);//2019-2-18


//       重点: 方式三:自定义的格式。如:ofPattern(“yyyy-MM-dd hh:mm:ss”)
        DateTimeFormatter formatter3 = DateTimeFormatter.ofPattern("yyyy-MM-dd hh:mm:ss");
        //格式化
        String str4 = formatter3.format(LocalDateTime.now());
        System.out.println(str4);//2019-02-18 03:52:09

        //解析
        TemporalAccessor accessor = formatter3.parse("2019-02-18 03:52:09");
        System.out.println(accessor);

4. Java比较器

4.1 自然排序:实现Comparable接口

实现Comparable接口要重写compareTo方法,重写规则如下:

如果当前对象this大于形参对象obj,则返回正整数,
如果当前对象this小于形参对象obj,则返回负整数,
如果当前对象this等于形参对象obj,则返回零。

栗子:

public class Test {
    public static void main(String[] args)  {
        Goods[] goodArr = new Goods[4];
        goodArr[0] = new Goods("红楼梦",100);
        goodArr[1] = new Goods("西游记",85);
        goodArr[2] = new Goods("水浒传",90);
        goodArr[3] = new Goods("三国演义",95);
        Arrays.sort(goodArr);
        for (Goods good : goodArr) {
            System.out.println(good);
        }
    }

}
class Goods implements Comparable{
    private String name;
    private int price;
    public Goods(String name, int price){
        this.name = name;
        this.price = price;
    }
    @Override
    public int compareTo(Object o) {
        if(o instanceof Goods){
            Goods good = (Goods) o;
            if(this.price > good.price){
                return 1;
            }else if(this.price < good.price){
                return -1;
            }else{
                return 0;
            }
        }
        throw new RuntimeException("输入数据异常!");
    }
    @Override
    public String toString(){
        return "商品:" + name + " 价格:" + price;
    }
}

4.2 定制排序

当元素的类型没实现java.lang.Comparable接口而又不方便修改代码,或者实现java.lang.Comparable接口的排序规则不适合当前的操作,那么可以考虑使用 Comparator 的对象来排序。实现定制排序要重写compare(Object o1,Object o2)方法,比较o1和o2的大小,重写规则如下:

如果方法返回正整数,则表示o1大于o2;
如果返回0,表示相等;
返回负整数,表示o1小于o2。
栗子:

public class Test {
    public static void main(String[] args)  {
        Goods[] goodArr = new Goods[4];
        goodArr[0] = new Goods("红楼梦",100);
        goodArr[1] = new Goods("西游记",85);
        goodArr[2] = new Goods("水浒传",90);
        goodArr[3] = new Goods("三国演义",95);
        Arrays.sort(goodArr, new Comparator<Goods>() {
            @Override
            public int compare(Goods o1, Goods o2) {
                return o1.getName().compareTo(o2.getName()); //按照名字排序
            }
        });
        for (Goods good : goodArr) {
            System.out.println(good);
        }
    }

}
class Goods implements Comparable{
    private String name;
    private int price;
    public Goods(String name, int price){
        this.name = name;
        this.price = price;
    }
    public String getName(){
        return name;
    }
    @Override
    public int compareTo(Object o) {
        if(o instanceof Goods){
            Goods good = (Goods) o;
            if(this.price > good.price){
                return 1;
            }else if(this.price < good.price){
                return -1;
            }else{
                return 0;
            }
        }
        throw new RuntimeException("输入数据异常!");
    }
    @Override
    public String toString(){
        return "商品:" + name + " 价格:" + price;
    }
}

5. BigInteger与BigDecimal

5.1 BigInteger

java.math包的BigInteger可以表示不可变的任意精度的整数。BigInteger 提供所有 Java 的基本整数操作符的对应物,并提供 java.lang.Math 的所有相关方法。另外,BigInteger 还提供以下运算:模算术、GCD 计算、质数测试、素数生成、位操作以及一些其他操作。
构造器

  • BigInteger(String val):根据字符串构建BigInteger对象

常用方法:
在这里插入图片描述

5.2 BigDecimal

一般的Float类和Double类可以用来做科学计算或工程计算,但在商业计算中,要求数字精度比较高,故用到java.math.BigDecimal类。

  • 构造器

public BigDecimal(double val)
public BigDecimal(String val)

  • 常用方法

public BigDecimal add(BigDecimal augend)
public BigDecimal subtract(BigDecimal subtrahend)
public BigDecimal multiply(BigDecimal multiplicand)
public BigDecimal divide(BigDecimal divisor, int scale, int roundingMode)

  Java知识库 最新文章
计算距离春节还有多长时间
系统开发系列 之WebService(spring框架+ma
springBoot+Cache(自定义有效时间配置)
SpringBoot整合mybatis实现增删改查、分页查
spring教程
SpringBoot+Vue实现美食交流网站的设计与实
虚拟机内存结构以及虚拟机中销毁和新建对象
SpringMVC---原理
小李同学: Java如何按多个字段分组
打印票据--java
上一篇文章      下一篇文章      查看所有文章
加:2022-06-18 23:18:09  更:2022-06-18 23:20:41 
 
开发: C++知识库 Java知识库 JavaScript Python PHP知识库 人工智能 区块链 大数据 移动开发 嵌入式 开发工具 数据结构与算法 开发测试 游戏开发 网络协议 系统运维
教程: HTML教程 CSS教程 JavaScript教程 Go语言教程 JQuery教程 VUE教程 VUE3教程 Bootstrap教程 SQL数据库教程 C语言教程 C++教程 Java教程 Python教程 Python3教程 C#教程
数码: 电脑 笔记本 显卡 显示器 固态硬盘 硬盘 耳机 手机 iphone vivo oppo 小米 华为 单反 装机 图拉丁

360图书馆 购物 三丰科技 阅读网 日历 万年历 2025年1日历 -2025/1/31 10:45:10-

图片自动播放器
↓图片自动播放器↓
TxT小说阅读器
↓语音阅读,小说下载,古典文学↓
一键清除垃圾
↓轻轻一点,清除系统垃圾↓
图片批量下载器
↓批量下载图片,美女图库↓
  网站联系: qq:121756557 email:121756557@qq.com  IT数码