<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Referenz ?]]></title><description><![CDATA[<p>Hallo ist es richtig wenn man sagt das hier die POINT Struktur als Referenz an die Funktion übergeben wird ?</p>
<pre><code class="language-cpp">POINT mause_coord ;            
GetCursorPos ( &amp; mause_coord );
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/topic/238070/referenz</link><generator>RSS for Node</generator><lastBuildDate>Tue, 07 Apr 2026 01:14:47 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/238070.rss" rel="self" type="application/rss+xml"/><pubDate>Mon, 06 Apr 2009 07:41:37 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Referenz ? on Mon, 06 Apr 2009 07:41:37 GMT]]></title><description><![CDATA[<p>Hallo ist es richtig wenn man sagt das hier die POINT Struktur als Referenz an die Funktion übergeben wird ?</p>
<pre><code class="language-cpp">POINT mause_coord ;            
GetCursorPos ( &amp; mause_coord );
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1691556</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1691556</guid><dc:creator><![CDATA[api]]></dc:creator><pubDate>Mon, 06 Apr 2009 07:41:37 GMT</pubDate></item><item><title><![CDATA[Reply to Referenz ? on Mon, 06 Apr 2009 07:54:53 GMT]]></title><description><![CDATA[<p>Das ist eine Übergabe by-reference. Allerdings übergibst du hier die Adresse von mause_coord, in der Funktion wird also mit einem Pointer gearbeitet. Das ist nicht zu verwechseln mit den Referenzen in C++.</p>
<p><a href="http://de.wikipedia.org/wiki/Call_by_reference#Simulation_von_Referenzparametern_durch_Zeiger" rel="nofollow">http://de.wikipedia.org/wiki/Call_by_reference#Simulation_von_Referenzparametern_durch_Zeiger</a></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1691566</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1691566</guid><dc:creator><![CDATA[_matze]]></dc:creator><pubDate>Mon, 06 Apr 2009 07:54:53 GMT</pubDate></item></channel></rss>