- Trending Categories
Data Structure
Networking
RDBMS
Operating System
Java
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
Physics
Chemistry
Biology
Mathematics
English
Economics
Psychology
Social Studies
Fashion Studies
Legal Studies
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
MonthDay equals() method in Java
The equality of two MonthDay objects can be determined using the equals() method in the MonthDay class in Java. This method requires a single parameter i.e. the MonthDay object to be compared. Also it returns true if both the MonthDay objects are equal and false otherwise.
A program that demonstrates this is given as follows
Example
import java.time.*; public class Main { public static void main(String[] args) { MonthDay md1 = MonthDay.parse("--02-22"); MonthDay md2 = MonthDay.parse("--02-22"); System.out.println("The MonthDay md1 is: " + md1); System.out.println("The MonthDay md2 is: " + md2); boolean flag = md1.equals(md2); if(flag) System.out.println("
Both MonthDay objects are equal"); else System.out.println("
Both MonthDay objects are not equal"); } }
Output
The MonthDay md1 is: --02-22 The MonthDay md2 is: --02-22 Both MonthDay objects are equal
Now let us understand the above program.
The two MonthDay objects are displayed. It is checked if the MonthDay objects are equal using the equals() method. The returned value of the method is displayed using an if statement. A code snippet that demonstrates this is as follows:
MonthDay md1 = MonthDay.parse("--02-22"); MonthDay md2 = MonthDay.parse("--02-22"); System.out.println("The MonthDay md1 is: " + md1); System.out.println("The MonthDay md2 is: " + md2); boolean flag = md1.equals(md2); if(flag) System.out.println("
Both MonthDay objects are equal"); else System.out.println("
Both MonthDay objects are not equal");
- Related Articles
- MonthDay hashCode() method in Java
- MonthDay range() method in Java
- MonthDay isBefore() Method in Java
- MonthDay isAfter() Method in Java
- MonthDay isSupported() Method in Java
- MonthDay isValidYear() Method in Java
- MonthDay compareTo() method in Java
- MonthDay format() method in Java
- MonthDay getDayOfMonth() method in Java
- MonthDay atYear() method in Java
- MonthDay from() method in Java
- MonthDay getMonth() method in Java
- MonthDay getMonthValue() method in Java
- MonthDay getLong() method in Java
- MonthDay toString() Method in Java

Advertisements