摘要:
一、软件开发架构 1、B / S browser 浏览器 〉 server 2、C / S client 客户端 〉 server 3、OSI的七层协议 物理层(Physical Layer):物理层负责传输比特流(0和1)的物理介质,例如电缆、光纤和无线电频谱。它处理与物理设备之间的电压、电流和光 阅读全文
摘要:
一、绑定方法 1、绑定给类的方法(@classmethod) class Oracle(): def __init__(self, ip, port): self.ip = ip self.port = port @classmethod # 该方法已经变成了绑定给类的方法,而不是绑定给对象了 de 阅读全文