02 2019 档案

摘要:读锁:lock table xxx read; (加上读锁之后,会阻止自己和其他进程update操作) 取消读锁:unlock tables; 写锁:lock table xxx read;(加上写锁后,会阻止其他进程update操作) 取消写锁:unlock tables; 阅读全文
posted @ 2019-02-26 11:53 前度天下 阅读(94) 评论(0) 推荐(0) 编辑
摘要:id = $id; $this->name = $name; $this->next = null; } } class SingleLinkList { private $header; public function __construct($id=null,$name=null) { $this->heade... 阅读全文
posted @ 2019-02-15 10:24 前度天下 阅读(220) 评论(0) 推荐(0) 编辑