Java Trivia point 2

Source: Internet
Author: User

Encapsulation refers to data hiding, the key is that the method in the class must not be allowed to access other classes of the instance domain, the program only through the object's methods and object data to interact.

Among the classes, the most common relationships are:

  • Dependency: A method of one class manipulates another class object
  • Aggregation: An object that contains objects of some other class
  • Inheritance: Subclasses and Parent classes

Local variables cannot be initialized to NULL, you need to set new or null manually, and class variables are automatically initialized (0,false,null).

Do not write accessor methods that return references to mutable objects, which allows an external program to modify the instance domain. The correct approach is to return the clone of the instance variable.

A method can access private data for all objects of the owning class

The final modifier is most often applied to a field of a primitive type or an immutable class. For a mutable class, final can only indicate that the reference cannot point to another object.

Java parameter passing is always a value pass, including an object reference.

Java Trivia point 2

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.