九、Object、时间日期类、System、StringBuilder、包装类

1、Object类

(1)public String toString():返回该对象的字符串表示。

toString方法返回该对象的字符串表示:对象的类型+@+内存地址值。

由于toString方法返回的结果是内存地址,而在开发中,经常需要按照对象的属性得到相应的字符串表现形式,因此也需要重写它。

小贴士: 直接使用输出语句输出对象名的时候,其实通过该对象调用了其toString()方法。

(2)public boolean equals(Object obj):指示其他某个对象是否与此对象“相等”。

如果没有覆盖重写equals方法,那么Object类中默认进行==运算符的对象地址比较,只要不是同一个对象,结果必然为false。

如果希望进行对象的内容比较,即所有或指定的部分成员变量相同就判定两个对象相同,则可以覆盖重写equals方法。

(3)JDK7添加了一个Objects工具类

在比较两个对象的时候,Object的equals方法容易抛出空指针异常,而Objects类中的equals方法就优化了这个问题。方法如下:

public static boolean equals(Object a, Object b):判断两个对象是否相等。

2、时间日期类

2.1 Date类

Date() 获取当前系统的日期和时间;

Date(Long milis)传递毫秒值,把毫秒值转换为日期;

getTime()把日期转换为毫秒值。

2.2 DateFormat类

(1)DateFormat为抽象类,不能直接使用,所以需要常用的子类java.text.SimpleDateFormat。

public SimpleDateFormat(String pattern):用给定的模式和默认语言环境的日期格式符号构造SimpleDateFormat。(参数pattern是一个字符串,代表日期时间的自定义格式)

例如:DateFormat df= new SimpleDateFormat("yyyy-MM-dd HH:mm:ss");

(2)public String format(Date date):将Date对象格式化为字符串。

String str = df.format(date);

(3)public Date parse(String source):将字符串解析为Date对象。

String str = "2018年12月11日";

Date date = df.parse(str);

2.3 Calendar类

(1)Calendar类在创建对象时并非直接创建,而是通过静态方法创建,返回子类对象:

public static Calendar getInstance():使用默认时区和语言环境获得一个日历

例如:Calendar cal = Calendar.getInstance();

(2)public int get(int field):返回给定日历字段的值。

        int year = cal.get(Calendar.YEAR);                    // 设置年

        int month = cal.get(Calendar.MONTH) + 1;        // 设置月

        int day1 = cal.get(Calendar.DAY_OF_MONTH);        // 设置日

        int day2 = cal.get(Calendar.DATE);        // 设置日

小提示:在Calendar类中,月份的表示是以0-11代表1-12月,所以需要+1.

(3)public Date getTime():返回一个表示此Calendar时间值(从历元到现在的毫秒偏移量)的Date对象。

        Date date = cal.getTime();

2.4 LocalDate类

LocalDate now = LocalDate.now():获取当前时间2019-12-4

now.getYear():获取当前时间的年份

now.getMonthValue():获取当前时间的月份

now.getDayOfMonth():获取当前时间的日

now.plusYears(2):返回距离当前对象指定年份的新LocalDate 对象,即增加2年

now.plusMonths(2):返回距离当前对象指定月份的新LocalDate 对象,即增加2个月

now.plusDays(2):返回距离当前对象指定天数的新LocalDate 对象,即增加2天

3、System类

(1)public static long currentTimeMillis():返回以毫秒为单位的当前时间。

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

(2)public static void arraycopy(Object src, int srcPos, Object dest, int destPos, int length):将数组中指定的数据拷贝到另一个数组中。

(源数组、源数组索引起始位置、目标数组、目标数组索引起始位置、复制元素个数)

        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);

代码运行后:src数组元素[1,2,3,4,5];dest数组元素[1,2,3,9,10]

4、StringBuilder类

StringBuilder是个字符串的缓冲区,即它是一个容器,容器中可以装很多字符串。并且能够对其中的字符串进行各种操作。

(1)public StringBuilder append(...):添加任意类型数据的字符串形式,并返回当前对象自身。

链式编程:

StringBuilder builder = new StringBuilder();

builder.append("hello").append("world").append(true).append(100);

(2)public String toString():将当前StringBuilder对象转换为String对象。

StringBuilder已经覆盖重写了Object当中的toString方法。

调用方法 builder .toString();

5、包装类

基本类型和字符串类型的相互转换:

(1)基本类型(int)→字符串(string)

创建一个整数类型:int i =1;

方式一:i+“”;

方式二:Integer.toString(i);

方式三:String.valueof(i);

(2)字符串(string)→基本类型(int)

创建一个字符串:String str =“1”;

方式一:Integer.parseInt(str);

方式二:Integer.valueOf(str).intValue();

你可能感兴趣的:(九、Object、时间日期类、System、StringBuilder、包装类)