Python constructor __new__ (cls[,...]), destructor __del__ ()

Source: Internet
Author: User

1 class capstr (str): 2     def __new__ (cls,string): 3         string=string.upper ()4         return str.__new__(cls,string)  56 a=capstr ('ifuckyou')7 Print A

__NEW__ is the establishment of a constructor-------instance object

Inherits the String class str, capitalizes the string, and returns the processed uppercase string with str.__new__ ()

Unlike __init__ (), Init is the initialization function, new is the constructor, a function that actually returns an instance object, and Init does not return an instance object

__del__ when an instance object is to be deconstructed

When an object is to be destroyed, __del__ () is called

There are some thoughts on the understanding of the structure function.

Python constructor __new__ (cls[,...]), destructor __del__ ()

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.