Java judgment equals

Source: Internet
Author: User

1. Basic data type with = =

long a = (long) 1234567890; long B = (long) 1234567890; if (A = = b) {    System.out.println ("Basic data type equal");}

2. Wrapper class use Equals or convert to basic data type and then use = =

Long a = (long) 1234567890= (long) 1234567890; if null && a.equals (b)) {    System.out.println ("wrapper class equals");} if null && a.longvalue () = = B.longvalue ()) {    System.out.println ("wrapper class equals");}

3. Object to use equals

Nullnew  String (); if null && a1.length () > 0 && a1.equals (B1)) {    System.out.println ("Object equal");}

Java judgment equals

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.