??xml version="1.0" encoding="utf-8" standalone="yes"?>久久精品99国产精品日本,四虎永久在线,国产欧美大片http://www.aygfsteel.com/lookis/zh-cnTue, 17 Jun 2025 08:02:45 GMTTue, 17 Jun 2025 08:02:45 GMT60[导入]译QSPDY协议草案2译工程http://www.aygfsteel.com/lookis/archive/2010/03/24/316402.htmlLookisLookisWed, 24 Mar 2010 02:18:00 GMThttp://www.aygfsteel.com/lookis/archive/2010/03/24/316402.htmlhttp://www.aygfsteel.com/lookis/comments/316402.htmlhttp://www.aygfsteel.com/lookis/archive/2010/03/24/316402.html#Feedback2http://www.aygfsteel.com/lookis/comments/commentRss/316402.htmlhttp://www.aygfsteel.com/lookis/services/trackbacks/316402.html文章来源:http://lookis.me/?p=50

Lookis 2010-03-24 10:18 发表评论
]]>
[导入]预告QJVM调试/Nginx和Resin配置与?/title><link>http://www.aygfsteel.com/lookis/archive/2010/03/24/316403.html</link><dc:creator>Lookis</dc:creator><author>Lookis</author><pubDate>Wed, 24 Mar 2010 02:18:00 GMT</pubDate><guid>http://www.aygfsteel.com/lookis/archive/2010/03/24/316403.html</guid><wfw:comment>http://www.aygfsteel.com/lookis/comments/316403.html</wfw:comment><comments>http://www.aygfsteel.com/lookis/archive/2010/03/24/316403.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.aygfsteel.com/lookis/comments/commentRss/316403.html</wfw:commentRss><trackback:ping>http://www.aygfsteel.com/lookis/services/trackbacks/316403.html</trackback:ping><description><![CDATA[  ׃旉关系Q这一ơ的培训计划有变Q把JVM调试单独出来做ؓ(f)一节课Q另外新加入评Q预计都是下周给Ch们上?<br>文章来源:<a >http://lookis.me/?p=38</a><img src ="http://www.aygfsteel.com/lookis/aggbug/316403.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.aygfsteel.com/lookis/" target="_blank">Lookis</a> 2010-03-24 10:18 <a href="http://www.aygfsteel.com/lookis/archive/2010/03/24/316403.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>[导入]JVM的理解(GC部分Q?/title><link>http://www.aygfsteel.com/lookis/archive/2010/03/24/316404.html</link><dc:creator>Lookis</dc:creator><author>Lookis</author><pubDate>Wed, 24 Mar 2010 02:18:00 GMT</pubDate><guid>http://www.aygfsteel.com/lookis/archive/2010/03/24/316404.html</guid><wfw:comment>http://www.aygfsteel.com/lookis/comments/316404.html</wfw:comment><comments>http://www.aygfsteel.com/lookis/archive/2010/03/24/316404.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.aygfsteel.com/lookis/comments/commentRss/316404.html</wfw:commentRss><trackback:ping>http://www.aygfsteel.com/lookis/services/trackbacks/316404.html</trackback:ping><description><![CDATA[内容E微变化了一点,主要讲解JVM中GC相关的部?PPT:JVM_GC.pdf CZ源码Qsrc_jvm_gc.rar 讲稿Q?========== GC 1.什么是GCQ?1)释放不再使用的内存对象以回收内存I间 2)压羃内存片 2.Z么要让JVM做GCQ而不是程序员来做Q?1)把开发h员从理内存中解攑և来,提高生?2)安全角度考虑Q不?x)由于失?故意错误释放内存带来潜在的安全问?3)弊端Q额外地占用CPUQ且对于E序员来?#8221;难于”控制 引用计数攉器:(x) start:当创建对象,q且指向该对象的引用被分配给一个变量,q个对象的引用计数被|ؓ(f)1 其他变量被赋gؓ(f)对这个对象引用时Qi++ 一个对象引用超q生存期或者被讄成一个新值时,i– 计数?的对象就可以被收?当收集的时候,该对象所引用的对象计数i– 优点:速度快,交织在程序运行之?~点:无法(g)出循环引用 跟踪攉器:(x) 从根l点开始跟t,Ҏ(gu)有跟t到的对象以某种方式(和实现有?打上标记Q跟t结束时Q就可以Ҏ(gu)打上标记的对象实现收?优点:可以回收循环引用 ~点:回收的时候长旉独占CPU 问题Q什么是根结?根结点:(x) 和实现有养I(x)ȝ来说有以下几个方面:(x) 1.局部变量,操作数栈(参数) 2.帔R池中对象Q字W串Q类名,接口?#8230; 3.JNI调用Q没有被释放?压羃攉器:(x) 把标Cؓ(f)zd的对象从原来的区域越q空闲区Ud到堆的另一?问题Q更新移动的对象要更新所有的指针Q以用于清理Q?解决Q有些JVM实现做了一?间接对象引用?Q不完美Q每ơ取对象都要多一个步骤)(j) 拯攉器:(x) 有两个内存区?把标Cؓ(f)zd的对象从原来的区域拷贝到另一个区?同一旉只有一个区域在使用 优点Q在使用的时候才更新指针 ~点Q内存用率降低 finalize 时机Q对象被回收?程Q收集器W一遍扫描出不再被引用的对象 调用他们的finalizeҎ(gu)Q此时程序员可以实现finalizeҎ(gu)做清理工作,可以复活q个对象 攉器第二遍扫描Q只扫描不再被引用的对象Q对没复zȝ对象做清?jdk1.2以前Q可触及(qing)Q可复活Q不可触?可触?qing)?x)从根l点开始跟t可以触?qing)?可复z:(x)从根l点跟踪不可触及(qing)Q但在自己或者别人的finalizeҎ(gu)里重C该对象可触及(qing) 不可触及(qing)QfinalizeҎ(gu)后也不可触及(qing) jdk1.2以后QY引用Q弱引用Q媄(jing)子引?软引用:(x)做cache 弱引用,做映?初始化实例时默认配置Q配|修Ҏ(gu)可以通知Q如果实例已l不再用,׃通知 影子引用Q处理收集时的后l操作,cLfinalize,初始化时要增加一个ReferenceQueue队列参数 ========== <br>文章来源:<a >http://lookis.me/?p=32</a><img src ="http://www.aygfsteel.com/lookis/aggbug/316404.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.aygfsteel.com/lookis/" target="_blank">Lookis</a> 2010-03-24 10:18 <a href="http://www.aygfsteel.com/lookis/archive/2010/03/24/316404.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>[导入]预告QJVM的理解以?qing)调?/title><link>http://www.aygfsteel.com/lookis/archive/2010/03/15/315503.html</link><dc:creator>Lookis</dc:creator><author>Lookis</author><pubDate>Mon, 15 Mar 2010 09:16:00 GMT</pubDate><guid>http://www.aygfsteel.com/lookis/archive/2010/03/15/315503.html</guid><wfw:comment>http://www.aygfsteel.com/lookis/comments/315503.html</wfw:comment><comments>http://www.aygfsteel.com/lookis/archive/2010/03/15/315503.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.aygfsteel.com/lookis/comments/commentRss/315503.html</wfw:commentRss><trackback:ping>http://www.aygfsteel.com/lookis/services/trackbacks/315503.html</trackback:ping><description><![CDATA[  最q公司来了些ChQ都是本U生Q要Z们准备讲解一下JVM的东西,计划主题有三QJVMGC原理与内存参数的调整QCPU斚w的调试,内存斚w的调试,xCh主要q是有这三块内容需要了解?<br>文章来源:<a >http://lookis.me/?p=20</a><img src ="http://www.aygfsteel.com/lookis/aggbug/315503.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.aygfsteel.com/lookis/" target="_blank">Lookis</a> 2010-03-15 17:16 <a href="http://www.aygfsteel.com/lookis/archive/2010/03/15/315503.html#Feedback" target="_blank" style="text-decoration:none;">发表评论</a></div>]]></description></item><item><title>[导入]搭徏WordPresshttp://www.aygfsteel.com/lookis/archive/2010/03/15/315504.htmlLookisLookisMon, 15 Mar 2010 09:16:00 GMThttp://www.aygfsteel.com/lookis/archive/2010/03/15/315504.htmlhttp://www.aygfsteel.com/lookis/comments/315504.htmlhttp://www.aygfsteel.com/lookis/archive/2010/03/15/315504.html#Feedback0http://www.aygfsteel.com/lookis/comments/commentRss/315504.htmlhttp://www.aygfsteel.com/lookis/services/trackbacks/315504.html文章来源:http://lookis.me/?p=10

Lookis 2010-03-15 17:16 发表评论
]]>
վ֩ģ壺 ͬ| | ʯ| | | | | Ȫ| ƾ| | | | ٳ| | ¡| ʡ| ˾| | | | Դ| | ͺ| | | | | | | ˮ| | ʡ| | | | | ٰ| | | ɽ| |