溫馨提示×

溫馨提示×

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

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

Python中self參數(shù)有什么用

發(fā)布時間:2021-08-12 14:52:27 來源:億速云 閱讀:177 作者:小新 欄目:開發(fā)技術(shù)

這篇文章主要介紹Python中self參數(shù)有什么用,文中介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們一定要看完!

1、概述

1.1 場景

我們在使用 Python 中的 方法 method 時,經(jīng)常會看到 參數(shù)中帶有 self,但是我們也沒對這個參數(shù)進(jìn)行賦值,那么這個參數(shù)到底是啥意思呢?

2、知識點(diǎn)

2.1 成員函數(shù)(m) 和 普通方法(f)

Python 中的 "類方法" 必須有一個額外的 第一個參數(shù)名稱(名稱任意,不過推薦 self),而 "普通方法"則不需要。

m、f、c 都是代碼自動提示時的 左邊字母(method、function、class)

# -*- coding: utf-8 -*-
class Test(object):
 def add(self, a, b):
  # 輸出 a + b
  print(a + b)
 def show(self):
  # 輸出 "Hello World"
  print("Hello World")

def display(a, b):
 # 輸出 a * b
 print(a * b)

if __name__ == '__main__':
 test = Test()
 test.add(1, 2)
 test.show()
 display(1, 2)

2.2 類函數(shù),靜態(tài)函數(shù)

類函數(shù)一般用參數(shù) cls

靜態(tài)函數(shù)無法使用 self 或 cls

class Test(object):
 def __init__(self):
  print('我是構(gòu)造函數(shù)。。。。')
 def foo(self, str):
  print(str)
 @classmethod
 def class_foo(cls, str):
  print(str)
 @staticmethod
 def static_foo(str):
  print(str)

def show(str):
 print(str)

if __name__ == '__main__':
 test = Test()
 test.foo("成員函數(shù)")
 Test.class_foo("類函數(shù)")
 Test.static_foo("靜態(tài)函數(shù)")
 show("普通方法")

輸出結(jié)果:

我是構(gòu)造函數(shù)。。。。
成員函數(shù)
類函數(shù)
靜態(tài)函數(shù)
普通方法

以上是“Python中self參數(shù)有什么用”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報,并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI