02 2019 档案
摘要:读锁:lock table xxx read; (加上读锁之后,会阻止自己和其他进程update操作) 取消读锁:unlock tables; 写锁:lock table xxx read;(加上写锁后,会阻止其他进程update操作) 取消写锁:unlock tables;
阅读全文
摘要:id = $id; $this->name = $name; $this->next = null; } } class SingleLinkList { private $header; public function __construct($id=null,$name=null) { $this->heade...
阅读全文