<?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: How Java passes variables</title>
	<atom:link href="http://syfran.com/2009/09/how-java-passes-variables/feed/" rel="self" type="application/rss+xml" />
	<link>http://syfran.com/2009/09/how-java-passes-variables/</link>
	<description>Coding without limits</description>
	<lastBuildDate>Thu, 15 Oct 2009 21:23:22 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
	<item>
		<title>By: syfran</title>
		<link>http://syfran.com/2009/09/how-java-passes-variables/comment-page-1/#comment-53</link>
		<dc:creator>syfran</dc:creator>
		<pubDate>Tue, 22 Sep 2009 15:38:17 +0000</pubDate>
		<guid isPermaLink="false">http://syfran.com/?p=218#comment-53</guid>
		<description>Most java beginners don&#039;t even know what it means to &#039;pass by reference&#039;. C++ programmers are going to be taught what the difference between them are from the start and have to learn to work with each one. A java beginner can safely ignore it in the beginning.

Just my opinion though :/</description>
		<content:encoded><![CDATA[<p>Most java beginners don&#8217;t even know what it means to &#8216;pass by reference&#8217;. C++ programmers are going to be taught what the difference between them are from the start and have to learn to work with each one. A java beginner can safely ignore it in the beginning.</p>
<p>Just my opinion though :/</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Ivana Fukalot</title>
		<link>http://syfran.com/2009/09/how-java-passes-variables/comment-page-1/#comment-44</link>
		<dc:creator>Ivana Fukalot</dc:creator>
		<pubDate>Sun, 20 Sep 2009 01:31:23 +0000</pubDate>
		<guid isPermaLink="false">http://syfran.com/?p=218#comment-44</guid>
		<description>&quot;The subject gets brought up mostly by C++ programmers transferring over to java.&quot;

Don&#039;t see why that would be the case. Java&#039;s references are identical to pointers and are passed in the same exact way too - by value.

The only people that I see asking this question are beginners who still don&#039;t know what a pointer is and how it works.</description>
		<content:encoded><![CDATA[<p>&#8220;The subject gets brought up mostly by C++ programmers transferring over to java.&#8221;</p>
<p>Don&#8217;t see why that would be the case. Java&#8217;s references are identical to pointers and are passed in the same exact way too &#8211; by value.</p>
<p>The only people that I see asking this question are beginners who still don&#8217;t know what a pointer is and how it works.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Paul-Benoit Larochelle</title>
		<link>http://syfran.com/2009/09/how-java-passes-variables/comment-page-1/#comment-31</link>
		<dc:creator>Paul-Benoit Larochelle</dc:creator>
		<pubDate>Sat, 05 Sep 2009 00:08:19 +0000</pubDate>
		<guid isPermaLink="false">http://syfran.com/?p=218#comment-31</guid>
		<description>Good show
There are simpler way to explain that as Peter van der Linden did in his book &quot;Just Java&quot; but there is no error in the argumentation.
Basically you can do:

public void (MyObj x) {
  x.abc = z;
}

but you cannot do

public void(MyObj x, MyObj y) {
      MyObj temp = x;
      x = y;
      y = x;
}

that would require ** in C++

Good show</description>
		<content:encoded><![CDATA[<p>Good show<br />
There are simpler way to explain that as Peter van der Linden did in his book &#8220;Just Java&#8221; but there is no error in the argumentation.<br />
Basically you can do:</p>
<p>public void (MyObj x) {<br />
  x.abc = z;<br />
}</p>
<p>but you cannot do</p>
<p>public void(MyObj x, MyObj y) {<br />
      MyObj temp = x;<br />
      x = y;<br />
      y = x;<br />
}</p>
<p>that would require ** in C++</p>
<p>Good show</p>
]]></content:encoded>
	</item>
</channel>
</rss>
