 




<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
		>
<channel>
	<title>Comments on: Recompile in java</title>
	<atom:link href="http://itknowledgeexchange.techtarget.com/itanswers/recompile-in-java/feed/" rel="self" type="application/rss+xml" />
	<link>http://itknowledgeexchange.techtarget.com/itanswers/recompile-in-java/</link>
	<description></description>
	<lastBuildDate>Sat, 25 May 2013 13:28:28 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	
	<item>
		<title>By: v1i2b3h4a5</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/recompile-in-java/#comment-114015</link>
		<dc:creator>v1i2b3h4a5</dc:creator>
		<pubDate>Wed, 05 Dec 2012 13:02:09 +0000</pubDate>
		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/itanswers/recompile-in-java/#comment-114015</guid>
		<description><![CDATA[Finaly got it by just adding String after List and here is the code:import  java.util.*;
public class CIDemo{
public static void main(String[] args){

List&lt;String&gt; ls = new ArrayList&lt;String&gt;();
ls.add(&quot;ABC&quot;);
ls.add(&quot;xyz&quot;);
ls.add(&quot;abc&quot;);

System.out.println(&quot;Elements of array list \n&quot;);

Iterator itr = ls.iterator();
while(itr.hasNext()){
Object ele = itr.next();
System.out.println(ele);
}
}//End of main
}//End of Collection interface]]></description>
		<content:encoded><![CDATA[<p>Finaly got it by just adding String after List and here is the code:import  java.util.*;<br />
public class CIDemo{<br />
public static void main(String[] args){</p>
<p>List&lt;String&gt; ls = new ArrayList&lt;String&gt;();<br />
ls.add(&#8220;ABC&#8221;);<br />
ls.add(&#8220;xyz&#8221;);<br />
ls.add(&#8220;abc&#8221;);</p>
<p>System.out.println(&#8220;Elements of array list \n&#8221;);</p>
<p>Iterator itr = ls.iterator();<br />
while(itr.hasNext()){<br />
Object ele = itr.next();<br />
System.out.println(ele);<br />
}<br />
}//End of main<br />
}//End of Collection interface</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: TomLiotta</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/recompile-in-java/#comment-114012</link>
		<dc:creator>TomLiotta</dc:creator>
		<pubDate>Wed, 05 Dec 2012 12:28:34 +0000</pubDate>
		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/itanswers/recompile-in-java/#comment-114012</guid>
		<description><![CDATA[What happened when you recompiled with -Xlint:unchecked specified? (If you won&#039;t try it, why should we?) -- Tom]]></description>
		<content:encoded><![CDATA[<p>What happened when you recompiled with -Xlint:unchecked specified? (If you won&#8217;t try it, why should we?) &#8212; Tom</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: v1i2b3h4a5</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/recompile-in-java/#comment-114008</link>
		<dc:creator>v1i2b3h4a5</dc:creator>
		<pubDate>Wed, 05 Dec 2012 12:08:52 +0000</pubDate>
		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/itanswers/recompile-in-java/#comment-114008</guid>
		<description><![CDATA[This is my code and my compile environment is JDK7import  java.util.*;

public class CIDemo{
public static void main(String[] args){

List ls = new ArrayList();
ls.add(&quot;ABC&quot;);
ls.add(&quot;xyz&quot;);
ls.add(&quot;abc&quot;);
System.out.println(&quot;Elements of array list \n&quot;);

Iterator itr = ls.iterator();
while(itr.hasNext()){
Object ele = itr.next();
System.out.println(ele);
}
}//End of main
}//End of Collection interface]]></description>
		<content:encoded><![CDATA[<p>This is my code and my compile environment is JDK7import  java.util.*;</p>
<p>public class CIDemo{<br />
public static void main(String[] args){</p>
<p>List ls = new ArrayList();<br />
ls.add(&#8220;ABC&#8221;);<br />
ls.add(&#8220;xyz&#8221;);<br />
ls.add(&#8220;abc&#8221;);<br />
System.out.println(&#8220;Elements of array list \n&#8221;);</p>
<p>Iterator itr = ls.iterator();<br />
while(itr.hasNext()){<br />
Object ele = itr.next();<br />
System.out.println(ele);<br />
}<br />
}//End of main<br />
}//End of Collection interface</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: TomLiotta</title>
		<link>http://itknowledgeexchange.techtarget.com/itanswers/recompile-in-java/#comment-114000</link>
		<dc:creator>TomLiotta</dc:creator>
		<pubDate>Wed, 05 Dec 2012 09:19:36 +0000</pubDate>
		<guid isPermaLink="false">http://itknowledgeexchange.techtarget.com/itanswers/recompile-in-java/#comment-114000</guid>
		<description><![CDATA[&lt;EM&gt;Can any one explain me why it is showing such a note?&lt;/EM&gt;
&#160;
No, not unless we had the code you are compiling and your compile environment.
&#160;
In order to tell, we would have to run your compile and add the &lt;CODE&gt;-xlint:unchecked&lt;/CODE&gt; option when compiling. Then we could look at what the compiler messages were and tell you.
&#160;
It would be a lot easier if you did it, though.
&#160;
Tom]]></description>
		<content:encoded><![CDATA[<p><em>Can any one explain me why it is showing such a note?</em><br />
&nbsp;<br />
No, not unless we had the code you are compiling and your compile environment.<br />
&nbsp;<br />
In order to tell, we would have to run your compile and add the <code>-xlint:unchecked</code> option when compiling. Then we could look at what the compiler messages were and tell you.<br />
&nbsp;<br />
It would be a lot easier if you did it, though.<br />
&nbsp;<br />
Tom</p>
]]></content:encoded>
	</item>
</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using memcached
Database Caching 6/8 queries in 0.008 seconds using memcached
Object Caching 311/312 objects using memcached

Served from: itknowledgeexchange.techtarget.com @ 2013-05-25 15:06:42 -->