我是靠谱客的博主 忧郁樱桃,最近开发中收集的这篇文章主要介绍python类介绍_python 类的介绍,觉得挺不错的,现在分享给大家,希望可以做个参考。

概述

使用面向对象的优点:

1.能够更好的设计软件架构

2.维护软件模块

3.易于架构和组件的重用

类的定义:

构造函数:初始化用,写不写都可以,默认为空

类属性:属于类的对象

方法属性:不属于类的对象

私有方法: 只能自己的类中用,别人不能调用

#!/usr/bin/env python

# -*-coding:utf-8-*-

class Person(object):

'''使用'''

country = 'China'

def __init__(self, name, age):

print "start"

self.age = age

self.name = name

def __del__(self):

print ' end '

def getName(self):

monica = 'manica'

print monica

return self.name

def setName(self, name):

self.name = name

def getAge(self):

return self.age

def setAge(self, age):

self.age = age

def info(self):

return "name is {0},age is {1},country is {2}".format(self.name, self.age, self.country)

def __show(self):

print "private function"

def show(self):

self.__show()

@property

def info0(self):

return "name is {0},age is {1},country is {2}".format(self.name, self.age, self.country)

@staticmethod

def show0():

print u"静态方法"

per = Person('monica', 26)

print per.getAge()

print per.getName()

print per.info()

print per.country

print per.show()

per.info0

Person.show0()

per.setAge('25')

print per.getAge()

# 说明这个类是做什么的

print Person.__doc__

方法:

1.类方法:

2.静态方法:类里面,不用实例化,直接用,只是占位 Person.show0()

3.特性方法:加一个装饰器(@property,不能有参数)per.info0 没有括号

4.普通方法:

最后

以上就是忧郁樱桃为你收集整理的python类介绍_python 类的介绍的全部内容,希望文章能够帮你解决python类介绍_python 类的介绍所遇到的程序开发问题。

如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。

本图文内容来源于网友提供,作为学习参考使用,或来自网络收集整理,版权属于原作者所有。
点赞(39)

评论列表共有 0 条评论

立即
投稿
返回
顶部