博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
python oop面向对象笔记
阅读量:5311 次
发布时间:2019-06-14

本文共 719 字,大约阅读时间需要 2 分钟。

#coding:utf-8 class Person(object):     def __init__(self,name,wage):         self.name = name         self.wage = wage     def func(self):         return '123'     @property #方法变为属性     def attr(self):         return '123'     def computer(self):         return '555' #类成员 (字段,方法,属性) obj = Person('jack',20000) print(obj.func()) print(obj.attr)
#类成员:方法 class Province(object):     def __init__(self,name):         pass     def f1(self): #普通方法         pass     @classmethod #类方法     def f2(cls):         print("i am f2")         print(cls)     @staticmethod #静态方法     def f3():         print("i am f3") # obj = Province() # obj.f1() Province.f2() #调用都用类 Province.f3()

转载于:https://www.cnblogs.com/Devopser/p/6367673.html

你可能感兴趣的文章
Eclipse(非J2EE版本)配置Extjs环境以及安装部署Tomcat
查看>>
网页中搜索框效果原理。
查看>>
SpringBoot实战 之 异常处理篇
查看>>
【转】【OPenGL】opengl 64位 配置 freeglutx64下载
查看>>
Bootstrap 基础
查看>>
设计模式 之 工厂模式
查看>>
哈夫曼树及解码
查看>>
七大技巧保护无线网络,蹭网卡什么的都是浮云!
查看>>
Sql数据库收缩 语句特别快
查看>>
生成四位随机数的PHP代码
查看>>
Cocos2d-x 2.x 升级为 3.x 常见变化纪录
查看>>
Memcached
查看>>
项目启动报错java.net.SocketException: Unrecognized Windows Sockets error: 0: JVM_Bind
查看>>
Cassandra 的Custom Codecs
查看>>
去掉UIToolBar上面的shadowImage
查看>>
DP---最长公共子序列
查看>>
#100天计划# 2013年9月27日
查看>>
HDU-2086 A1 = ?
查看>>
主站点~~~~
查看>>
CC150-Array and string 1.1
查看>>