国产xxxx99真实实拍_久久不雅视频_高清韩国a级特黄毛片_嗯老师别我我受不了了小说

資訊專欄INFORMATION COLUMN

【譯】python 靜態方法和類方法的區別

Crazy_Coder / 2148人閱讀

摘要:盡管和非常相似,但在用法上依然有一些明顯的區別。所以,從靜態方法的使用中可以看出,我們不會訪問到本身它基本上只是一個函數,在語法上就像一個方法一樣,但是沒有訪問對象和它的內部字段和其他方法,相反會訪問,會訪問。

python staticmethod and classmethod

Though classmethod and staticmethod are quite similar, there"s a slight difference in usage for both entities: classmethod must have a reference to a class object as the first parameter, whereas staticmethod can have no parameters at all.

Let"s look at all that was said in real examples.

盡管 classmethod 和 staticmethod 非常相似,但在用法上依然有一些明顯的區別。classmethod 必須有一個指向 類對象 的引用作為第一個參數,而 staticmethod 可以沒有任何參數。

讓我們看幾個例子。

例子 - Boilerplate

Let"s assume an example of a class, dealing with date information (this is what will be our boilerplate to cook on):

class Date(object):

    def __init__(self, day=0, month=0, year=0):
        self.day = day
        self.month = month
        self.year = year

This class obviously could be used to store information about certain dates (without timezone information; let"s assume all dates are presented in UTC).

很明顯,這個類的對象可以存儲日期信息(不包括時區,假設他們都存儲在 UTC)。

Here we have __init__, a typical initializer of Python class instances, which receives arguments as a typical instancemethod, having the first non-optional argument (self) that holds reference to a newly created instance.

這里的 init 方法用于初始化對象的屬性,它的第一個參數一定是 self,用于指向已經創建好的對象。

Class Method

We have some tasks that can be nicely done using classmethods.

Let"s assume that we want to create a lot of Date class instances having date information coming from outer source encoded as a string of next format ("dd-mm-yyyy"). We have to do that in different places of our source code in project.

利用 classmethod 可以做一些很棒的東西。

比如我們可以支持從特定格式的日期字符串來創建對象,它的格式是 ("dd-mm-yyyy")。很明顯,我們只能在其他地方而不是 init 方法里實現這個功能。

So what we must do here is:
Parse a string to receive day, month and year as three integer variables or a 3-item tuple consisting of that variable.
Instantiate Date by passing those values to initialization call.
This will look like:

大概步驟:

解析字符串,得到整數 day, month, year。

使用得到的信息初始化對象

代碼如下

day, month, year = map(int, string_date.split("-"))
date1 = Date(day, month, year)

理想的情況是 Date 類本身可以具備處理字符串時間的能力,解決了重用性問題,比如添加一個額外的方法。

For this purpose, C++ has such feature as overloading, but Python lacks that feature- so here"s when classmethod applies. Lets create another "constructor".

C++ 可以方便的使用重載來解決這個問題,但是 python 不具備類似的特性。 所以接下來我們要使用 classmethod 來幫我們實現。

@classmethod
  def from_string(cls, date_as_string):
  day, month, year = map(int, date_as_string.split("-"))
  date1 = cls(day, month, year)
  return date1


date2 = Date.from_string("11-09-2012")

Let"s look more carefully at the above implementation, and review what advantages we have here:

We"ve implemented date string parsing in one place and it"s reusable now.
Encapsulation works fine here (if you think that you could implement string parsing as a single function elsewhere, this solution fits OOP paradigm far better).
cls is an object that holds class itself, not an instance of the class. It"s pretty cool because if we inherit our Date class, all children will have from_string defined also.

讓我們在仔細的分析下上面的實現,看看它的好處。

我們在一個方法中實現了功能,因此它是可重用的。 這里的封裝處理的不錯(如果你發現還可以在代碼的任意地方添加一個不屬于 Date 的函數來實現類似的功能,那很顯然上面的辦法更符合 OOP 規范)。 cls 是一個保存了 class 的對象(所有的一切都是對象)。 更妙的是, Date 類的衍生類都會具有 from_string 這個有用的方法。

Static method

What about staticmethod? It"s pretty similar to classmethod but doesn"t take any obligatory parameters (like a class method or instance method does).

Let"s look at the next use case.

We have a date string that we want to validate somehow. This task is also logically bound to Date class we"ve used so far, but still doesn"t require instantiation of it.

Here is where staticmethod can be useful. Let"s look at the next piece of code:

staticmethod 沒有任何必選參數,而 classmethod 第一個參數永遠是 cls, instancemethod 第一個參數永遠是 self。

@staticmethod
def is_date_valid(date_as_string):
  day, month, year = map(int, date_as_string.split("-"))
  return day <= 31 and month <= 12 and year <= 3999

# usage:
is_date = Date.is_date_valid("11-09-2012")

So, as we can see from usage of staticmethod, we don"t have any access to what the class is- it"s basically just a function, called syntactically like a method, but without access to the object and it"s internals (fields and another methods), while classmethod does.

所以,從靜態方法的使用中可以看出,我們不會訪問到 class 本身 - 它基本上只是一個函數,在語法上就像一個方法一樣,但是沒有訪問對象和它的內部(字段和其他方法),相反 classmethod 會訪問 cls, instancemethod 會訪問 self。

參考

Meaning of @classmethod and @staticmethod for beginner?

文章版權歸作者所有,未經允許請勿轉載,若此文章存在違規行為,您可以聯系管理員刪除。

轉載請注明本文地址:http://m.specialneedsforspecialkids.com/yun/40935.html

相關文章

  • 】函數組件和類組件有什么不同?

    摘要:但是,你可能已經注意到,當你試圖通過指定依賴數組來優化時,可能會遇到帶有過時閉包的錯誤。這是否意味著閉包是問題所在我不這么認為。到目前為止,我所看到的所有情況下,過時的閉包問題都是由于錯誤地假設函數不更改或總是相同而發生的。 原文鏈接:https://overreacted.io/how-ar... 在很長一段時間內,標準答案是class components提供更多的特性(像sta...

    gself 評論0 收藏0
  • Python方法靜態方法之間區別

      小編寫這篇文章的主要目的,是講述一下關于Python的一些小技巧,包括類方法與靜態方法之間,存在一些什么區別呢?怎么從真正的意義上去理解關于其不同之間的區別呢?下面就給大家詳細的解答下。  前言  在python的類中不僅可以有methods,還可以有變量,這些變量稱為類屬性,例如如下代碼中Book類的TYPES即為類屬性。  類中的方法分為3類:  1.實例方法instance method...

    89542767 評論0 收藏0
  • python函數和類一些研究

    摘要:與通常認為實例方法是的,而類方法是的,這種說法也沒錯,只是對于不同類型變量來說,結果是不同的測試一下結果顯示的都是直接從類訪問,結果這個實例方法顯示的是。可以知道的意義并不是始終不變的,對于不同的對象來說意義并不一樣。 bound與unbound 通常認為實例方法是bound的,而類方法是unbound的,這種說法也沒錯,只是對于不同類型變量來說,結果是不同的 class A(obje...

    Wildcard 評論0 收藏0
  • []Java和Python——應該先學習哪種編程語言

    摘要:和是目前兩種非常流行且功能強大的編程語言。初級程序員常常感到困惑,最常被問到的問題就是應該學習還是,是不是容易上手,應該推薦給初學者學習什么樣的編程語言等等。在學習任何編程語言之前,你必須知道它們之間的區別。 Java和Python是目前兩種非常流行且功能強大的編程語言。初級程序員常常感到困惑,最常被問到的問題就是應該學習Java還是Python,Python是不是容易上手,應該推薦給...

    honmaple 評論0 收藏0
  • [] 屬性訪問、特性和描述符 1

    摘要:許多程序員發現賦值語句比方法函數看起來更清晰。自從和屬性的創建來自,我們必須經常定義特性使用如下代碼這允許我們用一條簡單的語句添加一張牌到手中像下面這樣前面的賦值語句有一個缺點,因為它看起來像一張牌替代了所有的牌。 注:原書作者 Steven F. Lott,原書名為 Mastering Object-oriented Python 對象就是一些特性的集合,包括方法和屬性。object...

    褰辯話 評論0 收藏0

發表評論

0條評論

最新活動
閱讀需要支付1元查看
<