Python 靜態方法和類方法

#! /usr/bin/python3.4 class Student(): school = 'one' __num = 0 @staticmethod #靜態方法 def staticShowName(name):#不需要實例 print("name: " + name) print("school Name: " + Student.school) @classmeth
相關文章
相關標籤/搜索