yuesong-feng / 30dayMakeCppServer

30天自制C++服务器,包含教程和源代码

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

关于Acceptor的一个疑问

Anu-orange opened this issue · comments

在day07开始存在了一个Acceptor,然后介绍了Acceptor的三个特点,其中第一个就是类存在于EventLoop类中,这句话是不是反了,EvenetLoop这个类里面哪来的Acceptor类对象成员呢,应该是Acceptor类中存在EvenetLoop类对象或者EventLoop存在于Acceptor中吧

其实我感觉意思不是“类”存在于哪个“类”,而是Acceptor抽象出来的事件存在于Eventloop中,因为在Acceptor中创建了Channel,而这个channel是绑定在Eventloop中,可以这么理解