這篇文章主要介紹Python中self參數(shù)有什么用,文中介紹的非常詳細(xì),具有一定的參考價值,感興趣的小伙伴們一定要看完!
站在用戶的角度思考問題,與客戶深入溝通,找到石臺網(wǎng)站設(shè)計與石臺網(wǎng)站推廣的解決方案,憑借多年的經(jīng)驗(yàn),讓設(shè)計與互聯(lián)網(wǎng)技術(shù)結(jié)合,創(chuàng)造個性化、用戶體驗(yàn)好的作品,建站類型包括:網(wǎng)站建設(shè)、做網(wǎng)站、企業(yè)官網(wǎng)、英文網(wǎng)站、手機(jī)端網(wǎng)站、網(wǎng)站推廣、域名申請、網(wǎng)站空間、企業(yè)郵箱。業(yè)務(wù)覆蓋石臺地區(qū)。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)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!