為什麼要remove

runc發表於2013-04-23

<BR>while (true) {<BR>	selector.select();<BR>		for (Iterator<SelectionKey> itor = selector.selectedKeys().iterator(); itor.hasNext();) {<BR>				SelectionKey key = (SelectionKey) itor.next();<BR>				itor.remove();<BR>		<BR><p class="indent">[/code	<BR><BR><BR>不明白為什麼要remove,個人感覺每次執行Iterator<SelectionKey> itor = selector.selectedKeys().iterator(),都會回收

相關文章