博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
java的equals方法_Java Date equals()方法与示例
阅读量:2535 次
发布时间:2019-05-11

本文共 1636 字,大约阅读时间需要 5 分钟。

java的equals方法

日期类equals()方法 (Date Class equals() method)

  • equals() method is available in java.util package.

    equals()方法在java.util包中可用。

  • equals() method is used to check whether this date and the given object (o) are equals or not.

    equals()方法用于检查此日期和给定对象(o)是否相等。

  • equals() method is a non-static method, it is accessible with the class object only and if we try to access the method with the class name then we will get an error.

    equals()方法是一种非静态方法,仅可通过类对象访问,如果尝试使用类名访问该方法,则会收到错误消息。

  • equals() method does not throw an exception at the time checking equality of this date object with the given object (o).

    在检查此日期对象与给定对象(o)的相等性时, equals()方法不会引发异常。

Syntax:

句法:

public boolean equals(Object o);

Parameter(s):

参数:

  • Object o – represents the object to be compared with this date.

    对象o –表示要与此日期进行比较的对象。

Return value:

返回值:

The return type of this method is boolean, it returns true when two date objects are equals otherwise it returns false.

此方法的返回类型为boolean ,当两个日期对象相等时返回true,否则返回false。

Example:

例:

// Java program to demonstrate the example // of boolean equals(Object o) method of Dateimport java.util.*;public class EqualsOfDate {
public static void main(String[] args) {
// create two Date object with two dates Date this_date = new Date(2016, 8, 20); Date given_date = new Date(2010, 11, 30); // By using equals() method is to check // equality of this_date and the given_date boolean status = this_date.equals(given_date); // Display status System.out.println("this_date.equals(given_date): " + status); }}

Output

输出量

this_date.equals(given_date): false

翻译自:

java的equals方法

转载地址:http://vvtzd.baihongyu.com/

你可能感兴趣的文章
《代码大全》学习摘要(五)软件构建中的设计(下)
查看>>
C#检测驱动是否安装的问题
查看>>
web-4. 装饰页面的图像
查看>>
微信测试账户
查看>>
Android ListView上拉获取下一页
查看>>
算法练习题
查看>>
学习使用Django一 安装虚拟环境
查看>>
Hibernate视频学习笔记(8)Lazy策略
查看>>
CSS3 结构性伪类选择器(1)
查看>>
IOS 杂笔-14(被人遗忘的owner)
查看>>
自动测试用工具
查看>>
前端基础之BOM和DOM
查看>>
[T-ARA/筷子兄弟][Little Apple]
查看>>
编译Libgdiplus遇到的问题
查看>>
【NOIP 模拟赛】Evensgn 剪树枝 树形dp
查看>>
java学习笔记④MySql数据库--01/02 database table 数据的增删改
查看>>
两台电脑如何实现共享文件
查看>>
组合模式Composite
查看>>
程序员最想得到的十大证件,你最想得到哪个?
查看>>
我的第一篇CBBLOGS博客
查看>>