
多线程
fkbush
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
任务执行(一)
1.串行的WEB服务器 class SingleThreadWebServer { public static void main(String[] args) throws IOException { ServerSocket socket = new ServerSocket(80); while(true) { Socket connection = socket.acce转载 2016-11-26 20:47:21 · 735 阅读 · 0 评论 -
任务执行(二)
一、串行的页面渲染器 class SingleThreadRenderer { void renderPage(CharSequence source) { renderText(source); List imageData = new ArrayList(); for(ImageInfo imageInfo : scanForImageInfo(source)) { im转载 2016-11-27 19:35:19 · 529 阅读 · 0 评论