锘??xml version="1.0" encoding="utf-8" standalone="yes"?>欧美一区 二区,国产美女极品在线,国产精品一线天粉嫩avhttp://www.aygfsteel.com/retom/archive/2012/11/23/391793.html鏅掑お闃?/dc:creator>鏅掑お闃?/author>Thu, 22 Nov 2012 22:16:00 GMThttp://www.aygfsteel.com/retom/archive/2012/11/23/391793.htmlhttp://www.aygfsteel.com/retom/comments/391793.htmlhttp://www.aygfsteel.com/retom/archive/2012/11/23/391793.html#Feedback0http://www.aygfsteel.com/retom/comments/commentRss/391793.htmlhttp://www.aygfsteel.com/retom/services/trackbacks/391793.html 1 /**
 2  * 綰跨▼浜掗攣錛氱嚎紼媡d1寰楀埌obj1鐨勯攣錛岀嚎紼媡d2寰楀埌浜唎bj2鐨勯攣錛屾帴鐫錛岀嚎紼媡d1鍦ㄦ寔鏈塷bj1鐨勯攣鐨勫悓鏃?br /> 3  * 浼佸浘寰楀埌obj2鐨勯攣錛岃屾鏃剁嚎紼媡d2浠嶆寔鏈塷bj2鐨勯攣錛屾墍浠ョ嚎紼媡d1絳夊緟錛岃岀嚎紼媡d2鐨勮涓轟篃涓庣嚎紼媡d1鐩稿悓
 4  * 鍥犳灝卞艦鎴愪簡姝婚攣
 5  */
 6 public class Client {
 7     public static void main(String[] args) {
 8         final Object obj1 = "test1";
 9         final Object obj2 = "test2";
10         
11         Thread td1 = new Thread(){
12             public void run(){
13                 synchronized(obj1){
14                     System.out.println("td1寰楀埌浜唎bj1鐨勯攣");
15                     try {
16                         Thread.sleep(1000);
17                     } catch (InterruptedException e) {
18                         e.printStackTrace();
19                     }
20                     
21                     synchronized(obj2){
22                         System.out.println("td1浼佸浘寰楀埌obj2鐨勯攣");
23                         
24                         try {
25                             Thread.sleep(1000);
26                         } catch (InterruptedException e) {
27                             e.printStackTrace();
28                         }
29                     }
30                 }
31             }
32         };
33         
34 
35         Thread td2 = new Thread(){
36             public void run(){
37                 synchronized(obj2){
38                     System.out.println("td2寰楀埌浜唎bj2鐨勯攣");
39                     try {
40                         Thread.sleep(1000);
41                     } catch (InterruptedException e) {
42                         e.printStackTrace();
43                     }
44                     
45                     synchronized(obj1){
46                         System.out.println("td2浼佸浘寰楀埌obj1鐨勯攣");
47                         
48                         try {
49                             Thread.sleep(1000);
50                         } catch (InterruptedException e) {
51                             e.printStackTrace();
52                         }
53                     }
54                 }
55             }
56         };
57         
58         td1.start();
59         td2.start();
60     }
61 
62 }


]]>
java 蹇熸帓搴?/title><link>http://www.aygfsteel.com/retom/archive/2012/11/01/390599.html</link><dc:creator>鏅掑お闃?/dc:creator><author>鏅掑お闃?/author><pubDate>Thu, 01 Nov 2012 04:06:00 GMT</pubDate><guid>http://www.aygfsteel.com/retom/archive/2012/11/01/390599.html</guid><wfw:comment>http://www.aygfsteel.com/retom/comments/390599.html</wfw:comment><comments>http://www.aygfsteel.com/retom/archive/2012/11/01/390599.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.aygfsteel.com/retom/comments/commentRss/390599.html</wfw:commentRss><trackback:ping>http://www.aygfsteel.com/retom/services/trackbacks/390599.html</trackback:ping><description><![CDATA[<div style="border-bottom: #cccccc 1px solid; border-left: #cccccc 1px solid; padding-bottom: 4px; background-color: #eeeeee; padding-left: 4px; width: 98%; padding-right: 5px; font-size: 13px; word-break: break-all; border-top: #cccccc 1px solid; border-right: #cccccc 1px solid; padding-top: 4px"><!--<br /><br />Code highlighting produced by Actipro CodeHighlighter (freeware)<br />http://www.CodeHighlighter.com/<br /><br />--><span style="color: #008080"> 1</span> <span style="color: #000000"><br /></span><span style="color: #008080"> 2</span> <span style="color: #000000"></span><span style="color: #0000ff">public</span><span style="color: #000000"> </span><span style="color: #0000ff">class</span><span style="color: #000000"> QuickSort {<br /></span><span style="color: #008080"> 3</span> <span style="color: #000000">    </span><span style="color: #0000ff">public</span><span style="color: #000000"> </span><span style="color: #0000ff">static</span><span style="color: #000000"> </span><span style="color: #0000ff">int</span><span style="color: #000000"> partition(</span><span style="color: #0000ff">int</span><span style="color: #000000">[] arr, </span><span style="color: #0000ff">int</span><span style="color: #000000"> low, </span><span style="color: #0000ff">int</span><span style="color: #000000"> high){<br /></span><span style="color: #008080"> 4</span> <span style="color: #000000">        </span><span style="color: #0000ff">int</span><span style="color: #000000"> pivot </span><span style="color: #000000">=</span><span style="color: #000000"> arr[low];<br /></span><span style="color: #008080"> 5</span> <span style="color: #000000">        </span><span style="color: #0000ff">while</span><span style="color: #000000">(low</span><span style="color: #000000"><</span><span style="color: #000000">high){<br /></span><span style="color: #008080"> 6</span> <span style="color: #000000">            </span><span style="color: #0000ff">while</span><span style="color: #000000">(low</span><span style="color: #000000"><</span><span style="color: #000000">high </span><span style="color: #000000">&&</span><span style="color: #000000"> arr[high]</span><span style="color: #000000">>=</span><span style="color: #000000">pivot){<br /></span><span style="color: #008080"> 7</span> <span style="color: #000000">                high</span><span style="color: #000000">--</span><span style="color: #000000">;<br /></span><span style="color: #008080"> 8</span> <span style="color: #000000">            }<br /></span><span style="color: #008080"> 9</span> <span style="color: #000000">            </span><span style="color: #0000ff">if</span><span style="color: #000000">(low</span><span style="color: #000000"><</span><span style="color: #000000">high){<br /></span><span style="color: #008080">10</span> <span style="color: #000000">                arr[low] </span><span style="color: #000000">=</span><span style="color: #000000"> arr[high];<br /></span><span style="color: #008080">11</span> <span style="color: #000000">                low</span><span style="color: #000000">++</span><span style="color: #000000">;<br /></span><span style="color: #008080">12</span> <span style="color: #000000">            }<br /></span><span style="color: #008080">13</span> <span style="color: #000000">            <br /></span><span style="color: #008080">14</span> <span style="color: #000000">            </span><span style="color: #0000ff">while</span><span style="color: #000000">(low</span><span style="color: #000000"><</span><span style="color: #000000">high </span><span style="color: #000000">&&</span><span style="color: #000000"> arr[low]</span><span style="color: #000000"><=</span><span style="color: #000000">pivot){<br /></span><span style="color: #008080">15</span> <span style="color: #000000">                low</span><span style="color: #000000">++</span><span style="color: #000000">;<br /></span><span style="color: #008080">16</span> <span style="color: #000000">            }<br /></span><span style="color: #008080">17</span> <span style="color: #000000">            </span><span style="color: #0000ff">if</span><span style="color: #000000">(low</span><span style="color: #000000"><</span><span style="color: #000000">high){<br /></span><span style="color: #008080">18</span> <span style="color: #000000">                arr[high] </span><span style="color: #000000">=</span><span style="color: #000000"> arr[low];<br /></span><span style="color: #008080">19</span> <span style="color: #000000">                high</span><span style="color: #000000">--</span><span style="color: #000000">;<br /></span><span style="color: #008080">20</span> <span style="color: #000000">            }<br /></span><span style="color: #008080">21</span> <span style="color: #000000">        }<br /></span><span style="color: #008080">22</span> <span style="color: #000000">        arr[low] </span><span style="color: #000000">=</span><span style="color: #000000"> pivot;<br /></span><span style="color: #008080">23</span> <span style="color: #000000">        </span><span style="color: #0000ff">return</span><span style="color: #000000"> low;<br /></span><span style="color: #008080">24</span> <span style="color: #000000">    }<br /></span><span style="color: #008080">25</span> <span style="color: #000000">    <br /></span><span style="color: #008080">26</span> <span style="color: #000000">    </span><span style="color: #0000ff">public</span><span style="color: #000000"> </span><span style="color: #0000ff">static</span><span style="color: #000000"> </span><span style="color: #0000ff">void</span><span style="color: #000000"> sort(</span><span style="color: #0000ff">int</span><span style="color: #000000">[] arr, </span><span style="color: #0000ff">int</span><span style="color: #000000"> low, </span><span style="color: #0000ff">int</span><span style="color: #000000"> high){<br /></span><span style="color: #008080">27</span> <span style="color: #000000">        </span><span style="color: #0000ff">int</span><span style="color: #000000"> pivot;<br /></span><span style="color: #008080">28</span> <span style="color: #000000">        </span><span style="color: #0000ff">if</span><span style="color: #000000">(low</span><span style="color: #000000"><</span><span style="color: #000000">high){<br /></span><span style="color: #008080">29</span> <span style="color: #000000">            pivot </span><span style="color: #000000">=</span><span style="color: #000000"> partition(arr,low,high);<br /></span><span style="color: #008080">30</span> <span style="color: #000000">            sort(arr,low,pivot</span><span style="color: #000000">-</span><span style="color: #000000">1</span><span style="color: #000000">);<br /></span><span style="color: #008080">31</span> <span style="color: #000000">            sort(arr,pivot</span><span style="color: #000000">+</span><span style="color: #000000">1</span><span style="color: #000000">,high);<br /></span><span style="color: #008080">32</span> <span style="color: #000000">        }<br /></span><span style="color: #008080">33</span> <span style="color: #000000">    }<br /></span><span style="color: #008080">34</span> <span style="color: #000000">    <br /></span><span style="color: #008080">35</span> <span style="color: #000000">    </span><span style="color: #0000ff">public</span><span style="color: #000000"> </span><span style="color: #0000ff">static</span><span style="color: #000000"> </span><span style="color: #0000ff">void</span><span style="color: #000000"> quickSort(</span><span style="color: #0000ff">int</span><span style="color: #000000">[] arr){<br /></span><span style="color: #008080">36</span> <span style="color: #000000">        sort(arr,</span><span style="color: #000000">0</span><span style="color: #000000">,arr.length</span><span style="color: #000000">-</span><span style="color: #000000">1</span><span style="color: #000000">);<br /></span><span style="color: #008080">37</span> <span style="color: #000000">    }<br /></span><span style="color: #008080">38</span> <span style="color: #000000">    <br /></span><span style="color: #008080">39</span> <span style="color: #000000">    </span><span style="color: #008000">/*</span><span style="color: #008000">public static void main(String[] args) {<br /></span><span style="color: #008080">40</span> <span style="color: #008000">        int[] arr = {46,34,2,99,6,23,20,8};<br /></span><span style="color: #008080">41</span> <span style="color: #008000">        quickSort(arr);<br /></span><span style="color: #008080">42</span> <span style="color: #008000">        StringBuilder sb = new StringBuilder();<br /></span><span style="color: #008080">43</span> <span style="color: #008000">        for(int i=0;i<arr.length;i++){<br /></span><span style="color: #008080">44</span> <span style="color: #008000">            sb.append(arr[i]+",");<br /></span><span style="color: #008080">45</span> <span style="color: #008000">        }<br /></span><span style="color: #008080">46</span> <span style="color: #008000">        sb.deleteCharAt(sb.length()-1);<br /></span><span style="color: #008080">47</span> <span style="color: #008000">        System.out.println(sb);<br /></span><span style="color: #008080">48</span> <span style="color: #008000">    }</span><span style="color: #008000">*/</span><span style="color: #000000">    <br /></span><span style="color: #008080">49</span> <span style="color: #000000">}<br /></span><span style="color: #008080">50</span> <span style="color: #000000"></span></div> <img src ="http://www.aygfsteel.com/retom/aggbug/390599.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.aygfsteel.com/retom/" target="_blank">鏅掑お闃?/a> 2012-11-01 12:06 <a href="http://www.aygfsteel.com/retom/archive/2012/11/01/390599.html#Feedback" target="_blank" style="text-decoration:none;">鍙戣〃璇勮</a></div>]]></description></item><item><title>鍏充簬instanceof鐨勭敤娉?/title><link>http://www.aygfsteel.com/retom/archive/2009/09/23/296103.html</link><dc:creator>鏅掑お闃?/dc:creator><author>鏅掑お闃?/author><pubDate>Wed, 23 Sep 2009 00:39:00 GMT</pubDate><guid>http://www.aygfsteel.com/retom/archive/2009/09/23/296103.html</guid><wfw:comment>http://www.aygfsteel.com/retom/comments/296103.html</wfw:comment><comments>http://www.aygfsteel.com/retom/archive/2009/09/23/296103.html#Feedback</comments><slash:comments>0</slash:comments><wfw:commentRss>http://www.aygfsteel.com/retom/comments/commentRss/296103.html</wfw:commentRss><trackback:ping>http://www.aygfsteel.com/retom/services/trackbacks/296103.html</trackback:ping><description><![CDATA[鍏堢湅涓や釜灝忕▼搴忥細<br /> 1銆?br /> <div style="border-right: #cccccc 1px solid; padding-right: 5px; border-top: #cccccc 1px solid; padding-left: 4px; font-size: 13px; padding-bottom: 4px; border-left: #cccccc 1px solid; width: 98%; word-break: break-all; padding-top: 4px; border-bottom: #cccccc 1px solid; background-color: #eeeeee"><span style="color: #008080">1</span><img id="Codehighlighter1_29_178_Open_Image" onclick="this.style.display='none'; Codehighlighter1_29_178_Open_Text.style.display='none'; Codehighlighter1_29_178_Closed_Image.style.display='inline'; Codehighlighter1_29_178_Closed_Text.style.display='inline';" alt="" src="http://www.aygfsteel.com/images/OutliningIndicators/ExpandedBlockStart.gif" align="top" /><img id="Codehighlighter1_29_178_Closed_Image" style="display: none" onclick="this.style.display='none'; Codehighlighter1_29_178_Closed_Text.style.display='none'; Codehighlighter1_29_178_Open_Image.style.display='inline'; Codehighlighter1_29_178_Open_Text.style.display='inline';" alt="" src="http://www.aygfsteel.com/images/OutliningIndicators/ContractedBlock.gif" align="top" /><span style="color: #0000ff">public</span><span style="color: #000000"> </span><span style="color: #0000ff">class</span><span style="color: #000000"> IntegerTypeTest </span><span id="Codehighlighter1_29_178_Closed_Text" style="border-right: #808080 1px solid; border-top: #808080 1px solid; display: none; border-left: #808080 1px solid; border-bottom: #808080 1px solid; background-color: #ffffff"><img alt="" src="http://www.aygfsteel.com/Images/dot.gif" /></span><span id="Codehighlighter1_29_178_Open_Text"><span style="color: #000000">{<br /> </span><span style="color: #008080">2</span><span style="color: #000000"><img id="Codehighlighter1_70_176_Open_Image" onclick="this.style.display='none'; Codehighlighter1_70_176_Open_Text.style.display='none'; Codehighlighter1_70_176_Closed_Image.style.display='inline'; Codehighlighter1_70_176_Closed_Text.style.display='inline';" alt="" src="http://www.aygfsteel.com/images/OutliningIndicators/ExpandedSubBlockStart.gif" align="top" /><img id="Codehighlighter1_70_176_Closed_Image" style="display: none" onclick="this.style.display='none'; Codehighlighter1_70_176_Closed_Text.style.display='none'; Codehighlighter1_70_176_Open_Image.style.display='inline'; Codehighlighter1_70_176_Open_Text.style.display='inline';" alt="" src="http://www.aygfsteel.com/images/OutliningIndicators/ContractedSubBlock.gif" align="top" />    </span><span style="color: #0000ff">public</span><span style="color: #000000"> </span><span style="color: #0000ff">static</span><span style="color: #000000"> </span><span style="color: #0000ff">void</span><span style="color: #000000"> main(String[] args)</span><span id="Codehighlighter1_70_176_Closed_Text" style="border-right: #808080 1px solid; border-top: #808080 1px solid; display: none; border-left: #808080 1px solid; border-bottom: #808080 1px solid; background-color: #ffffff"><img alt="" src="http://www.aygfsteel.com/Images/dot.gif" /></span><span id="Codehighlighter1_70_176_Open_Text"><span style="color: #000000">{<br /> </span><span style="color: #008080">3</span><span style="color: #000000"><img alt="" src="http://www.aygfsteel.com/images/OutliningIndicators/InBlock.gif" align="top" />        String str </span><span style="color: #000000">=</span><span style="color: #000000"> </span><span style="color: #000000">"</span><span style="color: #000000">abc</span><span style="color: #000000">"</span><span style="color: #000000">;<br /> </span><span style="color: #008080">4</span><span style="color: #000000"><img alt="" src="http://www.aygfsteel.com/images/OutliningIndicators/InBlock.gif" align="top" />        </span><span style="color: #0000ff">boolean</span><span style="color: #000000"> myBoolean </span><span style="color: #000000">=</span><span style="color: #000000"> (str </span><span style="color: #0000ff">instanceof</span><span style="color: #000000"> Integer); //compile time error<br /> </span><span style="color: #008080">5</span><span style="color: #000000"><img alt="" src="http://www.aygfsteel.com/images/OutliningIndicators/InBlock.gif" align="top" />        System.out.println(myBoolean);<br /> </span><span style="color: #008080">6</span><span style="color: #000000"><img alt="" src="http://www.aygfsteel.com/images/OutliningIndicators/ExpandedSubBlockEnd.gif" align="top" />    }</span></span><span style="color: #000000"><br /> </span><span style="color: #008080">7</span><span style="color: #000000"><img alt="" src="http://www.aygfsteel.com/images/OutliningIndicators/ExpandedBlockEnd.gif" align="top" />}</span></span></div> 2銆?br /> <div style="border-right: #cccccc 1px solid; padding-right: 5px; border-top: #cccccc 1px solid; padding-left: 4px; font-size: 13px; padding-bottom: 4px; border-left: #cccccc 1px solid; width: 98%; word-break: break-all; padding-top: 4px; border-bottom: #cccccc 1px solid; background-color: #eeeeee"><span style="color: #008080"> 1     import java.util.*;<br /> </span><img id="Codehighlighter1_28_467_Open_Image" onclick="this.style.display='none'; Codehighlighter1_28_467_Open_Text.style.display='none'; Codehighlighter1_28_467_Closed_Image.style.display='inline'; Codehighlighter1_28_467_Closed_Text.style.display='inline';" alt="" src="http://www.aygfsteel.com/images/OutliningIndicators/ExpandedBlockStart.gif" align="top" /><img id="Codehighlighter1_28_467_Closed_Image" style="display: none" onclick="this.style.display='none'; Codehighlighter1_28_467_Closed_Text.style.display='none'; Codehighlighter1_28_467_Open_Image.style.display='inline'; Codehighlighter1_28_467_Open_Text.style.display='inline';" alt="" src="http://www.aygfsteel.com/images/OutliningIndicators/ContractedBlock.gif" align="top" /><span style="color: #0000ff">public</span><span style="color: #000000"> </span><span style="color: #0000ff">class</span><span style="color: #000000"> InstanceOfDemo </span><span id="Codehighlighter1_28_467_Closed_Text" style="border-right: #808080 1px solid; border-top: #808080 1px solid; display: none; border-left: #808080 1px solid; border-bottom: #808080 1px solid; background-color: #ffffff"><img alt="" src="http://www.aygfsteel.com/Images/dot.gif" /></span><span id="Codehighlighter1_28_467_Open_Text"><span style="color: #000000">{<br /> </span><span style="color: #008080"> 2</span><span style="color: #000000"><img alt="" src="http://www.aygfsteel.com/images/OutliningIndicators/InBlock.gif" align="top" /><br /> </span><span style="color: #008080"> 3</span><span style="color: #000000"><img id="Codehighlighter1_74_465_Open_Image" onclick="this.style.display='none'; Codehighlighter1_74_465_Open_Text.style.display='none'; Codehighlighter1_74_465_Closed_Image.style.display='inline'; Codehighlighter1_74_465_Closed_Text.style.display='inline';" alt="" src="http://www.aygfsteel.com/images/OutliningIndicators/ExpandedSubBlockStart.gif" align="top" /><img id="Codehighlighter1_74_465_Closed_Image" style="display: none" onclick="this.style.display='none'; Codehighlighter1_74_465_Closed_Text.style.display='none'; Codehighlighter1_74_465_Open_Image.style.display='inline'; Codehighlighter1_74_465_Open_Text.style.display='inline';" alt="" src="http://www.aygfsteel.com/images/OutliningIndicators/ContractedSubBlock.gif" align="top" />    </span><span style="color: #0000ff">public</span><span style="color: #000000"> </span><span style="color: #0000ff">static</span><span style="color: #000000"> </span><span style="color: #0000ff">void</span><span style="color: #000000"> main(String[] args) </span><span id="Codehighlighter1_74_465_Closed_Text" style="border-right: #808080 1px solid; border-top: #808080 1px solid; display: none; border-left: #808080 1px solid; border-bottom: #808080 1px solid; background-color: #ffffff"><img alt="" src="http://www.aygfsteel.com/Images/dot.gif" /></span><span id="Codehighlighter1_74_465_Open_Text"><span style="color: #000000">{<br /> </span><span style="color: #008080"> 4</span><span style="color: #000000"><img alt="" src="http://www.aygfsteel.com/images/OutliningIndicators/InBlock.gif" align="top" />        System.out.println(</span><span style="color: #0000ff">new</span><span style="color: #000000"> InstanceOfDemo() </span><span style="color: #0000ff">instanceof</span><span style="color: #000000"> String); </span><span style="color: #008000">//</span><span style="color: #008000">compile time error</span><span style="color: #008000"><br /> </span><span style="color: #008080"> 5</span><span style="color: #008000"><img alt="" src="http://www.aygfsteel.com/images/OutliningIndicators/InBlock.gif" align="top" /></span><span style="color: #000000">        System.out.println(</span><span style="color: #0000ff">new</span><span style="color: #000000"> InstanceOfDemo() </span><span style="color: #0000ff">instanceof</span><span style="color: #000000"> Exception); </span><span style="color: #008000">//</span><span style="color: #008000">compile time error</span><span style="color: #008000"><br /> </span><span style="color: #008080"> 6</span><span style="color: #008000"><img alt="" src="http://www.aygfsteel.com/images/OutliningIndicators/InBlock.gif" align="top" /></span><span style="color: #000000">        System.out.println(</span><span style="color: #0000ff">new</span><span style="color: #000000"> InstanceOfDemo() </span><span style="color: #0000ff">instanceof</span><span style="color: #000000"> Object); </span><span style="color: #008000">//</span><span style="color: #008000">compilation and output true</span><span style="color: #008000"><br /> </span><span style="color: #008080"> 7</span><span style="color: #008000"><img alt="" src="http://www.aygfsteel.com/images/OutliningIndicators/InBlock.gif" align="top" /></span><span style="color: #000000">        <br /> </span><span style="color: #008080"> 8</span><span style="color: #000000"><img alt="" src="http://www.aygfsteel.com/images/OutliningIndicators/InBlock.gif" align="top" />        System.out.println(</span><span style="color: #0000ff">new</span><span style="color: #000000"> InstanceOfDemo() </span><span style="color: #0000ff">instanceof</span><span style="color: #000000"> List); </span><span style="color: #008000">//</span><span style="color: #008000">compilation and output false</span><span style="color: #008000"><br /> </span><span style="color: #008080"> 9</span><span style="color: #008000"><img alt="" src="http://www.aygfsteel.com/images/OutliningIndicators/ExpandedSubBlockEnd.gif" align="top" /></span><span style="color: #000000">    }</span></span><span style="color: #000000"><br /> </span><span style="color: #008080">10</span><span style="color: #000000"><img alt="" src="http://www.aygfsteel.com/images/OutliningIndicators/ExpandedBlockEnd.gif" align="top" />}</span></span><span style="color: #000000"><br /> </span><span style="color: #008080">11</span><span style="color: #000000"><img alt="" src="http://www.aygfsteel.com/images/OutliningIndicators/None.gif" align="top" /></span></div> 榪欎袱涓▼搴忕殑緙栬瘧緇撴灉鍜屾垜浠鎯崇殑涓嶄竴鏍鳳紝絎竴涓▼搴忕紪璇戠粨鏋滄槸錛?br /> <span style="color: #000000"><img height="83" alt="" src="http://www.aygfsteel.com/images/blogjava_net/retom/IntegerTypeTest.png" width="492" border="0" /><br /> </span>絎簩涓▼搴忕紪璇戠粨鏋滄槸錛?br /> <img height="230" alt="" src="http://www.aygfsteel.com/images/blogjava_net/retom/InstanceOfDemo.png" width="644" border="0" /><br /> 浜х敓榪欑閿欒鐨勫師鍥犲湪浜庯紝instanceof榪愮畻絎︾涓涓搷浣滄暟鐨勭被鍨嬪簲璇ユ槸絎簩涓搷浣滄暟鐨勭埗綾匯佸瓙綾繪垨鑰呬笌絎簩涓搷浣滄暟鐨勭被鍨嬬浉鍚屻傚惁鍒欑紪璇戜細鍑洪敊銆? <img src ="http://www.aygfsteel.com/retom/aggbug/296103.html" width = "1" height = "1" /><br><br><div align=right><a style="text-decoration:none;" href="http://www.aygfsteel.com/retom/" target="_blank">鏅掑お闃?/a> 2009-09-23 08:39 <a href="http://www.aygfsteel.com/retom/archive/2009/09/23/296103.html#Feedback" target="_blank" style="text-decoration:none;">鍙戣〃璇勮</a></div>]]></description></item></channel></rss> <footer> <div class="friendship-link"> <a href="http://www.aygfsteel.com/" title="狠狠久久亚洲欧美专区_中文字幕亚洲综合久久202_国产精品亚洲第五区在线_日本免费网站视频">狠狠久久亚洲欧美专区_中文字幕亚洲综合久久202_国产精品亚洲第五区在线_日本免费网站视频</a> </div> </footer> 主站蜘蛛池模板: <a href="http://" target="_blank">罗源县</a>| <a href="http://" target="_blank">广昌县</a>| <a href="http://" target="_blank">广宁县</a>| <a href="http://" target="_blank">专栏</a>| <a href="http://" target="_blank">长海县</a>| <a href="http://" target="_blank">库车县</a>| <a href="http://" target="_blank">沙坪坝区</a>| <a href="http://" target="_blank">湘阴县</a>| <a href="http://" target="_blank">斗六市</a>| <a href="http://" target="_blank">绥棱县</a>| <a href="http://" target="_blank">会昌县</a>| <a href="http://" target="_blank">青州市</a>| <a href="http://" target="_blank">龙岩市</a>| <a href="http://" target="_blank">寿宁县</a>| <a href="http://" target="_blank">珲春市</a>| <a href="http://" target="_blank">射阳县</a>| <a href="http://" target="_blank">德安县</a>| <a href="http://" target="_blank">冀州市</a>| <a href="http://" target="_blank">米泉市</a>| <a href="http://" target="_blank">大足县</a>| <a href="http://" target="_blank">鄂州市</a>| <a href="http://" target="_blank">松原市</a>| <a href="http://" target="_blank">美姑县</a>| <a href="http://" target="_blank">金乡县</a>| <a href="http://" target="_blank">井陉县</a>| <a href="http://" target="_blank">射洪县</a>| <a href="http://" target="_blank">吕梁市</a>| <a href="http://" target="_blank">涪陵区</a>| <a href="http://" target="_blank">买车</a>| <a href="http://" target="_blank">景德镇市</a>| <a href="http://" target="_blank">彰化市</a>| <a href="http://" target="_blank">崇阳县</a>| <a href="http://" target="_blank">英吉沙县</a>| <a href="http://" target="_blank">安阳县</a>| <a href="http://" target="_blank">文山县</a>| <a href="http://" target="_blank">景谷</a>| <a href="http://" target="_blank">阿坝</a>| <a href="http://" target="_blank">民乐县</a>| <a href="http://" target="_blank">石林</a>| <a href="http://" target="_blank">石嘴山市</a>| <a href="http://" target="_blank">开原市</a>| <script> (function(){ var bp = document.createElement('script'); var curProtocol = window.location.protocol.split(':')[0]; if (curProtocol === 'https') { bp.src = 'https://zz.bdstatic.com/linksubmit/push.js'; } else { bp.src = 'http://push.zhanzhang.baidu.com/push.js'; } var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(bp, s); })(); </script> </body>