学习笔记(11月06日) --类

四周一次课(11月6日)

、类的一般形式

创建类我们一般用class关键字来创建一个类,class后面跟类名字,可以自定义,最后以冒号结尾,如下所示:

class ClassName:

‘‘‘类的说明‘‘‘

类的内容

类的内容可以写类的全局变量,方法等

例子:

class ren(object):
    ‘‘‘this is a new class‘‘‘
    name = ‘meinv‘
    sex = ‘woman‘

a = ren()
print(type(a))
print(a.name)
print(a.sex)
a.age = 10
print(a.age)

结果:

<class ‘__main__.ren‘>
meinv
woman
10

解释:

1.    object默认是所有类的父类,不写默认继承object

2.        a = ren(),就是把类ren实例化,

3.    以上打印a的类型就是一个ren的类

4.    调用类的方法和变量,直接实例化类的后面直接用“.”调用就可以。

5.    如果想给实例a添加变量或者赋值,可以直接用“.”加变量赋值就可以了。

二、python构造器

__init__ 构造函数,在生成对象时调用。由于类可以起到模板的作用,因此,可以在创建实例的时候,把一些我们认为必须绑定的属性强制填写进去。通过定义一个特殊的__init__方法,在创建实例的时候,就把name,score等属性绑上去:

class Student(object):
    def __init__(self, name, score):
        self.name = name
        self.score = score

注意到__init__方法的第一个参数永远是self,表示创建的实例本身,因此,在__init__方法内部,就可以把各种属性绑定到self,因为self就指向创建的实例本身。

有了__init__方法,在创建实例的时候,就不能传入空的参数了,必须传入与__init__方法匹配的参数,但self不需要传,Python解释器自己会把实例变量传进去:

class Student(object):

    def __init__(self, name, score):
        self.name = name
        self.score = score
s = Student(‘ling‘, 89)
print(s.name)
print(s.score)

结果:

ling
89

解释:

1.在传递参数的时候,必须是传递两个参数,name和score,不然报错

2.Self的参数不用传递,python自动会把Student实例化的s传递给第一个参数,即self

三、类的继承

继承,顾名思义就知道是它的意思,举个例子说明:你现在有一个现有的A类,现在需要写一个B类,但是B类是A类的特殊版,我们就可以使用继承,B类继承A类时,B类会自动获得A类的所有属性和方法,A类称为父类,B类陈为子类,子类除了继承父类的所有属性和方法,还可以自定义自己的属性和方法,大大增加了代码的复用性。

在我们本章的第一节中,我们可以继承了object类,object类是所有类的父类,所有的类都默认继承object类,它是一个超级类,如果不写,默认继承object。

继承类的格式:

class A(父类):

Python的类支持多继承,而java没有多继承,但是可以有多接口的实现python的多继承很简单,下面我们来看一下多继承的格式:

class A:        # 定义类 A

.....

class B:         # 定义类 B

.....

class C(A, B):   # 继承类 A 和 B

.....

多继承其实在需要在父类的位置,直接写多个父类就可以,然后用“,”分开就可以了,C类就同时继承了A类和B类。

Python类的继承注意事项:

1.在继承中类的构造(__init()方法)不会自动调用,它需要在子类的构造中亲自调用。

2.Python总是首先子类中的方法,如果子类没有找到,才回去父类中查找。

例子1:

class parent:
    name = ‘parent‘
    age = 100
    def __init__(self):
        print(‘my name is parent‘)
    def get_name(self):
        return self.name
    def get_age(self):
        return self.age
class child(parent):
    
    def hello(self):
        print(‘hello child‘)
a = child()
a.hello()
print(a.get_name())
print(a.get_age())

结果:

my name is clild
hello child
parent
100

例子2:

class parent:
    name = ‘parent‘
    age = 100
    def __init__(self):
        print(‘my name is parent‘)
    def get_name(self):
        return self.name
    def get_age(self):
        return self.age
class child(parent):
    def hello(self):
        print(‘hello child‘)
a = child()
a.hello()
print(a.get_name())
print(a.get_age())

结果:

my name is parent
hello child
parent
100

解释:

以上两个例子,如果子类没有定义__init__()方法,子类初始化的时候就会调用父类的方法,但是当子类定义了__init__()方法,子类就不会调用父类的__init__()方法,那如果子类想实现父类构造器中的方法,然后自己在写自己特殊的方法呢,这样该怎么办呢?

class parent(object):
    name = ‘parent‘
    age = 100
    def __init__(self):
        print(‘my name is parent‘)
    def get_name(self):
        return self.name
    def get_age(self):
        return self.age
class child(parent):
    def __init__(self):
        super(child, self).__init__()
        print(‘my name is clild‘)
    def hello(self):
        print(‘hello child‘)
a = child()
a.hello()
print(a.get_name())
print(a.get_age())

结果:

my name is parent
my name is clild
hello child
parent
100

解释:

这时候就出现了子类调用父类的__init__()的方法,

注意:

这里在class
parent(object):定义父类的时候,一定要写继承object类,不然那就会有如下的报错信息:TypeError:
super() argument 1 must be type, not classobj,增加parent(object)就可以轻松解决。

时间: 2025-01-08 10:47:07

学习笔记(11月06日) --类的相关文章

Linux学习笔记4月10日任务

4月10日任务 11.6 MariaDB安装 11.7/11.8/11.9 Apache安装 扩展 apache dso https://yq.aliyun.com/articles/6298 apache apxshttp://man.chinaunix.net/newsoft/ApacheMenual_CN_2.2new/programs/apxs.html apache工作模式 http://www.cnblogs.com/fnng/archive/2012/11/20/2779977.h

Java 学习计划 11月28日-12月1日

File类基本操作 在Linux中,一切皆文件,所以文件操作是基础. Java中提供File类来提供一些对文件的基本操作,面对一个新类,第一件事就是去看API文档 File类的API文档中对于文件的路径进行了说明 Linux或Unix下用'/' windows下用‘\': 在API的最后一行,有一句说明, Instances of the File class are immutable; that is, once created, the abstract pathname represen

Linux学习笔记4月9日任务

11.1 LAMP架构介绍 11.2 MySQL.MariaDB介绍 11.3/11.4/11.5 MySQL安装 ./scripts/mysql_install_db --user=mysql --datadir=/data/mysql运行后提示,需要安装其他包,如下图: 再次运行./scripts/mysql_install_db --user=mysql --datadir=/data/mysql, 复制# cp support-files/my-default.cnf /etc/my.c

Linux学习笔记4月12日任务

11.14/11.15 Apache和PHP结合 11.16/11.17 Apache默认虚拟主机 虚拟主机,实现一台服务器运行多个域名,多个网站: 设置两个域名网站abc.com和111.com,并创建网站首页: 测试网站#curl -x 192.168.133.130:80 abc.com abc.com是默认虚拟主机域名,不是定义的域名,就都会访问到此域名: 原文地址:http://blog.51cto.com/12059818/2105593

Linux学习笔记4月13日任务

11.18 Apache用户认证 编辑以下文件 然后,创建用户及密码 -c,create创建文件,-m,md5加密:aming为自定义用户名: 第二次创建新用户,不用-c创建文件,已创建了: 然后,-t,再graceful; 然后,绑定HOSTS, 浏览器测试 状态码为401, -u,指定用户和密码登录:密码错误状态码也会为401: 指定文件admin.php: 11.19/11.20 域名跳转 域名跳转(也叫域名重定向),提升权重:301永久重定向: !表示非,^以某某开头的: 改完配置文件,

学习笔记(11月03日)

三周五次课(11月3日) 1.生成式和生成器 1.1列表生成式是python受欢迎的语法之一,通过一句简洁的语法就可以对一组元素进行过滤,还可以对得到的元素进行转换处理. 语法格式为: [exp for val in collection if condition] 相当于 result = [] for val in collection:     if (condition):         result.append(exp) 例子: a = [x * x for x in xrange

学习笔记(11月02日)--高阶函数

三周四次课(11月2日) 1.高阶函数 高级函数就是把函数当成参数传递的一种函数:例如: def add(x, y, f):     return f(x) + f(y) print(add(-8, 11, abs)) 结果: 19 解释: 1,调用add函数,分别执行abs(-8)和abs(11),分别计算出他们的值 2,最后再做和运算 map()函数 map函数是python内置的一个高阶函数,它接收一个函数f和一个list,并把list的元素依次传递给函数f,然后返回一个函数f处理完所有l

学习笔记(11月10日)--python常用内置模块的使用(logging, os, command)

四周五次课(11月10日) 一. logging 日志是我们排查问题的关键利器,写好日志记录,当我们发生问题时,可以快速定位代码范围进行修改.Python给我们开发者们提供了好的日志模块,下面我们就来介绍一下logging模块: 首先,我们先来看一个例子: import logging logging.debug('This is debug message') logging.info('This is info message') logging.warning('This is warni

学习笔记(11月14日)--正则

五周二次课(11月14日) 11.1 常用正则表达式 11.2 re正则对象和正则匹配效率比较 11.3 编译正则对象