Java Basics Review Notes series five common classes

Source: Internet
Author: User

Java Basic Review Notes series of common classes

1. Introduction of String class.

  First look at the package that the class belongs to: The Java.lang.String class.

And look at how it's constructed:

2, String s1 = "Hello";

String s2 = "Hello"; conclusion: S1 = = s2.

  String constants are placed in the data area.

3, String s3 = new String ("Hello");

String S4 = new String ("Hello"); Conclusion: S3! = S4. But S3.equals (S4).

 New is the object that is allocated in the heap interval. But the Equals method is overridden in string.

4. What are the common methods in the string class? (method is understood by literal meaning)

. length ();. IndexOf ();. Equals ();. ValueOf (Object obj) (called the ToString Method); Split ();

5.

Java Basics Review Notes series five common classes

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.