What is the difference between a property and a field in Java

Source: Internet
Author: User
For:
Properties in Java are generally understood as get and set methods.
fields, often called "class members." a property is limited to the declaration of a method in a class and is not related to other members of the class.
For example: void SetA (string s) {} string Geta () {} When you have such a pair of methods in a class, we can say that the class has a read-write a property (note that it is lowercase a). If you remove the set method, it is a readable property and vice versa. class member (field), typically a class member variable defined in a class, for example: public class a{private String s = "123";} We can say that there is a member variable called S in Class A.


Reprint Link: http://blog.csdn.net/ljz2009y/article/details/8023499

What is the difference between a property and a field in Java

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.