<?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: Java HashMap</title>
	<atom:link href="http://schabby.de/hashmap/feed/" rel="self" type="application/rss+xml" />
	<link>http://schabby.de/hashmap/</link>
	<description>OpenGL, Java, Cassandra and other stuff that totally makes the world go round</description>
	<lastBuildDate>Thu, 03 May 2012 12:04:36 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.2</generator>
	<item>
		<title>By: schabby</title>
		<link>http://schabby.de/hashmap/comment-page-1/#comment-244</link>
		<dc:creator>schabby</dc:creator>
		<pubDate>Mon, 22 Aug 2011 07:19:29 +0000</pubDate>
		<guid isPermaLink="false">http://schabby.de/?p=663#comment-244</guid>
		<description>Hi,

ja, Du hast Recht, es ist nicht wirklich nötig. Ich habe gerade folgendes ausprobiert:

&lt;code lang=&quot;java&quot;&gt;Double d1 = 0.312d;
double d2 = d1;
&lt;/code&gt;

und ja, Java macht natürlich ein automatisches &quot;unboxing&quot; in den primitiven Typ.

VG, Johannes</description>
		<content:encoded><![CDATA[<p>Hi,</p>
<p>ja, Du hast Recht, es ist nicht wirklich nötig. Ich habe gerade folgendes ausprobiert:</p>
<p><code lang="java">Double d1 = 0.312d;<br />
double d2 = d1;<br />
</code></p>
<p>und ja, Java macht natürlich ein automatisches &#8220;unboxing&#8221; in den primitiven Typ.</p>
<p>VG, Johannes</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Vin</title>
		<link>http://schabby.de/hashmap/comment-page-1/#comment-242</link>
		<dc:creator>Vin</dc:creator>
		<pubDate>Fri, 19 Aug 2011 13:23:21 +0000</pubDate>
		<guid isPermaLink="false">http://schabby.de/?p=663#comment-242</guid>
		<description>irgendwie ist der Typ-Cast:
 ((Double)hm.get(&quot;Rohit&quot;)).doubleValue();

sinfrei... oder ttäusch ich mich da?</description>
		<content:encoded><![CDATA[<p>irgendwie ist der Typ-Cast:<br />
 ((Double)hm.get(&#8220;Rohit&#8221;)).doubleValue();</p>
<p>sinfrei&#8230; oder ttäusch ich mich da?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: balibalo</title>
		<link>http://schabby.de/hashmap/comment-page-1/#comment-227</link>
		<dc:creator>balibalo</dc:creator>
		<pubDate>Fri, 17 Jun 2011 12:29:17 +0000</pubDate>
		<guid isPermaLink="false">http://schabby.de/?p=663#comment-227</guid>
		<description>@alex: 
die get() Methode von HashMap nimmt eine &quot;Schlussel&quot; als Parameter und gibt eine &quot;Wert&quot; zurück.
Hier sind alle Schlussel in ein Set gespeichert durch keySet() und dann für jede Schlussel (die &quot;name&quot; heisst) wird diese Schlussel (name) und ihre Wert (get(name)) gedruckt. 

&quot;value&quot; oder &quot;balance&quot; hat damit nix zu tun. Ist es schon klar?</description>
		<content:encoded><![CDATA[<p>@alex:<br />
die get() Methode von HashMap nimmt eine &#8220;Schlussel&#8221; als Parameter und gibt eine &#8220;Wert&#8221; zurück.<br />
Hier sind alle Schlussel in ein Set gespeichert durch keySet() und dann für jede Schlussel (die &#8220;name&#8221; heisst) wird diese Schlussel (name) und ihre Wert (get(name)) gedruckt. </p>
<p>&#8220;value&#8221; oder &#8220;balance&#8221; hat damit nix zu tun. Ist es schon klar?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Basti</title>
		<link>http://schabby.de/hashmap/comment-page-1/#comment-216</link>
		<dc:creator>Basti</dc:creator>
		<pubDate>Thu, 21 Apr 2011 07:22:05 +0000</pubDate>
		<guid isPermaLink="false">http://schabby.de/?p=663#comment-216</guid>
		<description>Hi! Danke für diese zusammenfassung! Basti</description>
		<content:encoded><![CDATA[<p>Hi! Danke für diese zusammenfassung! Basti</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: schabby</title>
		<link>http://schabby.de/hashmap/comment-page-1/#comment-208</link>
		<dc:creator>schabby</dc:creator>
		<pubDate>Tue, 29 Mar 2011 08:30:39 +0000</pubDate>
		<guid isPermaLink="false">http://schabby.de/?p=663#comment-208</guid>
		<description>Hi Alex,

hilf mir bitte kurz auf die Sprünge, was Du genau meinst :) Syntaktisch ist &lt;tt&gt;System.out.println(name + “: “+ hm.get(value));&lt;/tt&gt; korrekt. Das &#039;+&#039; dient ja in dieser Zeile dazu den String zusammenzusetzen und nicht die Balance zu addieren. 

Hilft Dir das weiter oder habe ich Deine Frage nicht kapiert? :)

Viele Grüße

Johannes</description>
		<content:encoded><![CDATA[<p>Hi Alex,</p>
<p>hilf mir bitte kurz auf die Sprünge, was Du genau meinst <img src='http://schabby.de/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  Syntaktisch ist <tt>System.out.println(name + “: “+ hm.get(value));</tt> korrekt. Das &#8216;+&#8217; dient ja in dieser Zeile dazu den String zusammenzusetzen und nicht die Balance zu addieren. </p>
<p>Hilft Dir das weiter oder habe ich Deine Frage nicht kapiert? <img src='http://schabby.de/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
<p>Viele Grüße</p>
<p>Johannes</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex</title>
		<link>http://schabby.de/hashmap/comment-page-1/#comment-207</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Tue, 29 Mar 2011 07:54:54 +0000</pubDate>
		<guid isPermaLink="false">http://schabby.de/?p=663#comment-207</guid>
		<description>also eher &quot;balance&quot; wie oben benutzt wurde statt value</description>
		<content:encoded><![CDATA[<p>also eher &#8220;balance&#8221; wie oben benutzt wurde statt value</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Alex</title>
		<link>http://schabby.de/hashmap/comment-page-1/#comment-206</link>
		<dc:creator>Alex</dc:creator>
		<pubDate>Tue, 29 Mar 2011 07:53:22 +0000</pubDate>
		<guid isPermaLink="false">http://schabby.de/?p=663#comment-206</guid>
		<description>solte diese zeile

     System.out.println(name + &quot;: &quot;+ hm.get(name));   

nich wiefolgt lauten:

     System.out.println(name + &quot;: &quot;+ hm.get(value));   
//also + der kontostand

?</description>
		<content:encoded><![CDATA[<p>solte diese zeile</p>
<p>     System.out.println(name + &#8220;: &#8220;+ hm.get(name));   </p>
<p>nich wiefolgt lauten:</p>
<p>     System.out.println(name + &#8220;: &#8220;+ hm.get(value));<br />
//also + der kontostand</p>
<p>?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Rob</title>
		<link>http://schabby.de/hashmap/comment-page-1/#comment-198</link>
		<dc:creator>Rob</dc:creator>
		<pubDate>Mon, 07 Feb 2011 22:36:19 +0000</pubDate>
		<guid isPermaLink="false">http://schabby.de/?p=663#comment-198</guid>
		<description>Perfekt, genau was ich gesucht habe, danke Mann :)</description>
		<content:encoded><![CDATA[<p>Perfekt, genau was ich gesucht habe, danke Mann <img src='http://schabby.de/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
</channel>
</rss>

