码迷,mamicode.com
首页 > 编程语言 > 详细

Python语言的有限状态机实现样例

时间:2018-06-02 18:38:06      阅读:419      评论:0      收藏:0      [点我收藏+]

标签:ted   connect   sed   not   usr   状态机   TE   实现   open()   

#!/usr/bin/env python3

class Connection(object):
    def __init__(self):
        self.change_state(ClosedConnection)

    def change_state(self,new_state):
        self.__class__ = new_state

    def read(self):
        raise NotImplementedError("未实现")

    def write(self):
        raise NotImplementedError("未实现")

    def open(self):
        raise NotImplementedError("未实现")

    def close(self):
        raise NotImplementedError("未实现")

class OpenedConnection(Connection):
    def read(self):
        print("read")

    def write(self):
        print("write")

    def open(self):
        raise RuntimeError("连接已经打开")

    def close(self):
        self.change_state(ClosedConnection)

class ClosedConnection(Connection):
    def read(self):
        raise RuntimeError("连接没有打开")

    def write(self):
        raise RuntimeError("连接没有打开")

    def open(self):
        self.change_state(OpenedConnection)

    def close(self):
        raise RuntimeError("连接已经关闭")
 

if __name__=="__main__":
    conn = Connection()
    conn.open()
    conn.write()

 

Python语言的有限状态机实现样例

标签:ted   connect   sed   not   usr   状态机   TE   实现   open()   

原文地址:https://www.cnblogs.com/JiangLe/p/9126072.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!