Android Face question Java Basics

Source: Internet
Author: User

1. The difference between equals and = =
1.1 For basic data types, = = Compares values for equality
1.2 For reference data types, = = Compares the object memory address is consistent, equal is a method in the object class, in which the implementation of equals only compares the memory address of two objects is equal, but in some subclasses, such as: String, Integer, etc., The method will be overridden to compare whether the content values are equal
String str1 = "abc";
String str2 = "abc";

System.out.println (str1 = = str2);
System.out.println (Str1.equals (str2));

String str2 = new String ("abc");
System.out.println (str1 = = str2);
System.out.println (Str1.equals (str2));

```
The above code will be output
True
True
False
True

Android Face question Java Basics

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.