python 类的继承

简介: python 类的继承
class Event(object):
    SIGNAL = 'SIGNAL'
    ORDER='ORDER'
    def __init__(self, route, args):
        self.data = {
            'route': route,
            'data': args
        }
    def __str__(self):
        return "route: %s\nargs: %s" % (self.data['route'], self.data['data'])
    @property
    def route(self):
        return self.data['route']
    @property
    def args(self):
        """"""
        return self.data['data']
class SignalEvent(Event):
    """ 由策略函数产生的交易信号事件。 """
    def __init__(self, orders):
        super(SignalEvent, self).__init__(Event.SIGNAL, orders)
    @property
    def orders(self):
        return self.data['data']
orders={'units':100,'direction':'buy','symbol':'USDJPY'}
a=SignalEvent(orders)
a
a.orders
a.args
a.route

关于类的继承的一篇比较好的讲解:

https://www.runoob.com/w3cnote/python-super-detail-intro.html

目录
相关文章
|
18天前
|
索引 Python
python-类属性操作
【10月更文挑战第11天】 python类属性操作列举
13 1
|
19天前
|
Java C++ Python
Python基础---类
【10月更文挑战第10天】Python类的定义
17 2
|
26天前
|
设计模式 开发者 Python
Python类里引用其他类
Python类里引用其他类
19 4
|
28天前
|
设计模式 开发者 Python
Python 类中引用其他类的实现详解
Python 类中引用其他类的实现详解
25 1
|
28天前
|
JSON 缓存 API
在 Python 中使用公共类处理接口请求的响应结果
在 Python 中使用公共类处理接口请求的响应结果
22 1
|
1月前
|
机器人 关系型数据库 Python
【Python篇】Python 类和对象:详细讲解(下篇)
【Python篇】Pyt hon 类和对象:详细讲解(下篇)
23 2
|
1月前
|
算法 Python
【Python篇】Python 类和对象:详细讲解(中篇)
【Python篇】Python 类和对象:详细讲解(中篇)
23 2
|
1月前
|
存储 C++ Python
【Python篇】Python 类和对象:详细讲解(上篇)
【Python篇】Python 类和对象:详细讲解(上篇)
27 2
|
2月前
|
前端开发 Python
Python编程的面向对象有哪些(二)
Python编程的面向对象(二)—类的多态
21 7
|
2月前
|
IDE Java 开发工具
Python类与面向对象
Python类与面向对象