Python standard library: built-in Function property (fget = None, fset = None, fdel = None, doc = None), fgetfset

Source: Internet
Author: User

Python standard library: built-in Function property (fget = None, fset = None, fdel = None, doc = None), fgetfset

This function is used to set attributes of class members. The fget parameter is used to obtain the attribute value of a class member. The fset parameter is used to set the attribute value of a class member. The fdel parameter is used to delete a class member. The doc parameter is the document string used to set the attribute. This function can be used to hide class member variables, that is, the requirements for object-oriented encapsulation.

Example:

# Property () class Foo: def _ init _ (self): self. _ x = None def getx (self): return self. _ x def setx (self, value): self. _ x = value def delx (self): del self. _ x = property (getx, setx, delx, "I'm the 'X' property. ") foo = Foo () foo. x = 2000 print (foo. x) del foo. x

The output is as follows:

2000




Cai junsheng QQ: 9073204 Shenzhen

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.