Python Learning Notes (18) @property

Source: Internet
Author: User

#use @property to add the width and Height properties to a screen object,#and a read-only property resolution:#-*-coding:utf-8-*-classScreen (object): @propertydefwidth (self):returnself._width @width. Setterdefwidth (self, value): Self._width=value @propertydefheight (self):returnself._height @height. Setterdefheight (self, value): Self._height=value @propertydefresolution (self):returnSelf._width +self._heights=Screen () S.width= 1024S.height= 768Print(s.resolution)assertS.resolution = = 786432,'1024x768 * 768 =%d?'% s.resolution

@propertyImplementation is more complex, we first examine how to use. To turn a getter method into a property, just add it, and @property at this point, it @property creates another adorner @height.setter , which is responsible for turning a setter method into a property assignment, so we have a controllable property operation.

Python Learning Note (18) @property

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.