中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

淺析Python裝飾器以及裝飾器模式

發布時間:2020-08-26 06:47:37 來源:腳本之家 閱讀:129 作者:laozhang 欄目:開發技術

漫談

如果作為一個Python入門,不了解Python裝飾器也沒什么,但是如果作為一個中級Python開發人員,如果再不對python裝飾器熟稔于心的話,那么可能并沒有量變積累到質變。

我以前也看過很多講python 裝飾器的文章,但是都是看了就忘。一方面是沒有做太多的練習,二是對它的領會不是很深。

希望引以為戒!!!

鄭傳

裝飾模式

如果你了解Java,你肯定聽過 裝飾器模式。在面向對象中,裝飾模式指:動態地給一個對象添加一些額外的職責。就增加一些功能來說,裝飾模式比生成子類更為靈活。

在設計模式學習----裝飾器模式,我摘取了下面一段使用裝飾器模式的代碼

public class DecoratorPattern { 
 
  /** 
   * @param args the command line arguments 
*/ 
  public static void main(String[] args) { 
    // TODO code application logic here 
    Basket basket = new Original(); 
    //一個裝飾的過程 
    Basket myBasket =new AppleDecorator(new BananaDecorator(new OrangeDecorator(basket)));  
    myBasket.show(); 
  } 
}

等會注意下 Basket myBasket =new AppleDecorator(new BananaDecorator(new OrangeDecorator(basket))) 這段的寫法

在Python官方文檔PythonDecorators 是這么介紹裝飾器的

What is a Decorator
A decorator is the name used for a software design pattern. Decorators dynamically alter the functionality of a function, method, or class without having to directly use subclasses or change the source code of the function being decorated.

翻一下: 就是裝飾器是一種軟件設計模式,被用來動態修改函數、方法,或者類功能卻不是通過子類,或者修改原代碼實現。

跟之前是一個意思!!!

Python Decorator
而Python的裝飾器與之不同,官方這么說:

The "decorators" we talk about with concern to Python are not exactly the same thing as the DecoratorPattern described above. A Python decorator is a specific change to the Python syntax that allows us to more conveniently alter functions and methods (and possibly classes in a future version). This supports more readable applications of the DecoratorPattern but also other uses as well.
Support for the decorator syntax was proposed for Python in PEP 318, and will be implemented in Python 2.4.

翻譯下:Python的 decorators 與 DecoratorPattern并不完全相同。 Python的decorator是一種特殊:在語法上實現允許我們更靈活地更改方法,或者函數。

例子:

@classmethod
def foo (arg1, arg2):
  ....

記住這個特殊的語法,后面我們會展示這個強大的語法糖

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

房产| 湖口县| 崇信县| 阿合奇县| 金乡县| 昭觉县| 平原县| 郸城县| 防城港市| 华安县| 承德县| 东安县| 弋阳县| 连云港市| 任丘市| 鸡西市| 廉江市| 开阳县| 青铜峡市| 东阳市| 宣威市| 徐闻县| 湘潭市| 恩平市| 桐乡市| 太仆寺旗| 张北县| 谷城县| 溧阳市| 武功县| 岑溪市| 阿瓦提县| 阿拉善左旗| 上蔡县| 龙南县| 辽宁省| 灵璧县| 济南市| 奎屯市| 高要市| 曲周县|