校园春色亚洲色图_亚洲视频分类_中文字幕精品一区二区精品_麻豆一区区三区四区产品精品蜜桃

主頁 > 知識庫 > Python上下文管理器實現方法總結

Python上下文管理器實現方法總結

熱門標簽:如何地圖標注公司 外賣地址有什么地圖標注 長春極信防封電銷卡批發 銀川電話機器人電話 煙臺電話外呼營銷系統 電銷機器人錄音要學習什么 企業彩鈴地圖標注 上海正規的外呼系統最新報價 預覽式外呼系統

什么時候可以考慮上下文管理器

當你的代碼邏輯需要用到如下關鍵字時,可以考慮使用上下文管理器讓你的代碼更加優雅:

try:
	...
finally:
	...

接下來介紹實現上下文管理器的三種方法。

方法1(上下文管理器協議)

總所周知,open()是默認支持上下文管理器的。所以打開一個txt文件,并向里面寫入內容,再關閉這個文件的代碼可以這樣寫:

with open("1.txt", "w") as file:
file.write("this is a demo")

這是等同于:

file = None
try:
    file = open("1.txt", "w")
    file.write("this is a demo")
finally:
    file.close()

要在Python中實現with語句的使用,就需要借助上下文管理器協議。也就是需要實現__enter__和__exit__兩個魔法方法。

class OpenMyFile(object):
    def __init__(self, path):
        self.path = path

    def __enter__(self):
        print("opening the txt")
        self.f = open(self.path, "w")
        return self

    def __exit__(self, *args, **kwargs):
        print("closing the txt")
        self.f.close()

    def write(self, string):
        print("writing...")
        self.f.write(string)


with OpenMyFile("2.txt") as file:
    file.write("this is a demo2")

# 輸出:
opening the txt
writing...
closing the txt

同時能夠看到本地生成了2.txt文件。需要注意的是,__enter__得return實例對象,不然會報異常:AttributeError: 'NoneType' object has no attribute 'write'

這是因為Python中的函數默認返回None。

方法2(@contextmanager)

利用contextlib中的contextmanager裝飾器。

from contextlib import contextmanager


@contextmanager
def open_my_file(path):
    print("opening the txt")
    f = open("3.txt", "w")
    yield f
    print("closing the txt")
    f.close()


with open_my_file("3.txt") as file:
    file.write("this is demo3")

# 輸出:
opening the txt
closing the txt

在@contextmanager裝飾的函數中,需要用yield隔開兩個邏輯語句。這里yield出來的對象會被as后面的變量接收。

方法3(contextlib.closing())

利用contextlib中的closing()方法。

from contextlib import closing


class OpenMyFile(object):
    def __init__(self, path):
        print("opening the txt")
        self.f = open(path, "w")

    def write(self, string):
        self.f.write(string)

    def close(self):
        print("closing the txt")
        self.f.close()


with closing(OpenMyFile("4.txt")) as file:
    file.write("this is demo4")

# 輸出:
opening the txt
closing the txt

與方法1不同。經過closing()方法包裝過后,在with語句結束時,會強制調用對象的close()方法。所以使用方法3時,需要定義的方法不是__exit__()而是close()。

到此這篇關于Python上下文管理器實現方法總結的文章就介紹到這了,更多相關Python上下文管理器實現的三種方法內容請搜索腳本之家以前的文章或繼續瀏覽下面的相關文章希望大家以后多多支持腳本之家!

您可能感興趣的文章:
  • Python上下文管理器Content Manager
  • python上下文管理器異常問題解決方法
  • 詳解python with 上下文管理器
  • Python實現上下文管理器的方法
  • python中with語句結合上下文管理器操作詳解
  • Python上下文管理器類和上下文管理器裝飾器contextmanager用法實例分析

標簽:盤錦 佳木斯 宜昌 珠海 上饒 湖北 西寧 潮州

巨人網絡通訊聲明:本文標題《Python上下文管理器實現方法總結》,本文關鍵詞  Python,上下文,管理器,實現,;如發現本文內容存在版權問題,煩請提供相關信息告之我們,我們將及時溝通與處理。本站內容系統采集于網絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《Python上下文管理器實現方法總結》相關的同類信息!
  • 本頁收集關于Python上下文管理器實現方法總結的相關信息資訊供網民參考!
  • 推薦文章
    主站蜘蛛池模板: 房山区| 杂多县| 阿图什市| 安国市| 双江| 安庆市| 类乌齐县| 鹿泉市| 新建县| 浙江省| 屏东县| 察雅县| 海城市| 溆浦县| 沅江市| 加查县| 滕州市| 永福县| 宁夏| 凤阳县| 伽师县| 天全县| 商洛市| 东兰县| 衡水市| 车险| 宾川县| 丹巴县| 兴义市| 万山特区| 理塘县| 平邑县| 海安县| 大关县| 淄博市| 陕西省| 宣化县| 石狮市| 黎平县| 安国市| 穆棱市|