The context management protocol of Python object-oriented programming

Source: Internet
Author: User

With open (' path ', ' R ', encoding= ' utf-8 ') as F:

code block

This is called the on-line management protocol, the WITH statement, in order for an object to be compatible with the WITH statement, the __enter__ and __exit__ methods must be declared in the class of the object.

Context Management Protocol:

Class Open:

def __init__ (self,name):

Self.name=name

def __enter__ (self):

Print (' A With statement appears, the object's __enter__ is triggered, the return value is assigned to the variable ' as declared ')

#return Self

def __exit__ (SELF,EXC_TYPE,EXC_VAL,EXC_TB):

Print (' important code block after execution, after I'm done! ‘)

Exc_type: Exception type

, Exc_val: Exception value

, EXC_TB: Traceability type

     

The context management protocol of Python object-oriented programming

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.