Python 静态方法和类方法

#! /usr/bin/python3.4 class Student(): school = 'one' __num = 0 @staticmethod #静态方法 def staticShowName(name):#不需要实例 print("name: " + name) print("school Name: " + Student.school) @classmeth
相关文章
相关标签/搜索