<?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[Wann und wo die Endung &amp;quot;_t&amp;quot;?]]></title><description><![CDATA[<p>Mir ist da eines aufgefallen, ich sehe immer häufiger Typbezeichner die auf _t enden. Z.B. wchar_t, oder in der <a href="http://opensource.adobe.com" rel="nofollow">ASL</a>sind auch vermehrt solche Typen zu sehen. Aber ich konnte kein Schema erkennen. Vielleicht nur typedef? Oder native Typen? Oder Typen die durch Operatorüberladung wie native Typen handhabar sind? Ich weiß nicht. Vielleicht weiß es hier jemand?</p>
]]></description><link>https://www.c-plusplus.net/forum/topic/175343/wann-und-wo-die-endung-quot-_t-quot</link><generator>RSS for Node</generator><lastBuildDate>Wed, 26 Aug 2026 12:34:41 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/175343.rss" rel="self" type="application/rss+xml"/><pubDate>Fri, 09 Mar 2007 12:19:29 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to Wann und wo die Endung &amp;quot;_t&amp;quot;? on Fri, 09 Mar 2007 12:19:29 GMT]]></title><description><![CDATA[<p>Mir ist da eines aufgefallen, ich sehe immer häufiger Typbezeichner die auf _t enden. Z.B. wchar_t, oder in der <a href="http://opensource.adobe.com" rel="nofollow">ASL</a>sind auch vermehrt solche Typen zu sehen. Aber ich konnte kein Schema erkennen. Vielleicht nur typedef? Oder native Typen? Oder Typen die durch Operatorüberladung wie native Typen handhabar sind? Ich weiß nicht. Vielleicht weiß es hier jemand?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1242250</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1242250</guid><dc:creator><![CDATA[Artchi]]></dc:creator><pubDate>Fri, 09 Mar 2007 12:19:29 GMT</pubDate></item><item><title><![CDATA[Reply to Wann und wo die Endung &amp;quot;_t&amp;quot;? on Fri, 09 Mar 2007 12:24:05 GMT]]></title><description><![CDATA[<p>Afaik sind das vor allem Standard-Typen, die für eine bestimmte Funktion(sgruppe) vorgesehen waren z.B. time_t oder clock_t - und weil das Standard-Kommitee etwas &quot;einfallslos&quot; war, haben sie einfach dem Namen der Funktion ein _t angehängt (z.B. <a href="http://man.cx/clock" rel="nofollow">man: clock</a> -&gt; clock_t).</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1242252</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1242252</guid><dc:creator><![CDATA[CStoll]]></dc:creator><pubDate>Fri, 09 Mar 2007 12:24:05 GMT</pubDate></item><item><title><![CDATA[Reply to Wann und wo die Endung &amp;quot;_t&amp;quot;? on Fri, 09 Mar 2007 12:38:18 GMT]]></title><description><![CDATA[<p>Daran ist das Standardkommitee nicht schuld. Das kommt aus der Unix-Welt, wo im Laufe der Jahre immer mehr Typen von short/int/long in Typedefs wie pid_t, socklen_t usw. gewandelt wurden. Einige dieser Typen, wie time_t z.B., haben es dann auch in ANSI-C geschafft.<br />
Ob diese Konvention heute noch gebraucht wird weiß ich nicht, ich hoffe es jedenfalls nicht <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face"
      title=":)"
      alt="🙂"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1242263</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1242263</guid><dc:creator><![CDATA[Bashar]]></dc:creator><pubDate>Fri, 09 Mar 2007 12:38:18 GMT</pubDate></item><item><title><![CDATA[Reply to Wann und wo die Endung &amp;quot;_t&amp;quot;? on Fri, 09 Mar 2007 12:47:34 GMT]]></title><description><![CDATA[<p>Ah, ok, also typedefs mit _t würde schlüssig klingen. Vorallem wenn man es durchgängig betreiben würde. Bei wchar_t und size_t hatte ich mir da noch keine Gedanken gemacht. Dann habe ich aber mal so in der ASL rumgestöbert und es sind mir _t's aufgefallen. Ohne erkennbares Muster. Beispiel:<br />
<a href="http://opensource.adobe.com/classadobe_1_1sequence__model__t.html" rel="nofollow">http://opensource.adobe.com/classadobe_1_1sequence__model__t.html</a></p>
<p>OK, also werde ich meine ganzen typedefs in meinen Projekten nicht mehr mit _t enden lassen?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1242265</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1242265</guid><dc:creator><![CDATA[Artchi]]></dc:creator><pubDate>Fri, 09 Mar 2007 12:47:34 GMT</pubDate></item><item><title><![CDATA[Reply to Wann und wo die Endung &amp;quot;_t&amp;quot;? on Fri, 09 Mar 2007 13:07:14 GMT]]></title><description><![CDATA[<p>neu im standard sind nun auch</p>
<pre><code class="language-cpp">int8_t
int16_t
int32_t
int64_t
uint8_t
uint16_t
uint32_t
uint64_t
</code></pre>
<p>was ich persoenlich sehr gut finde :), ich ueberlege ernsthaf von meinen sonstigen typedefs darauf umzusteigen <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face"
      title=":)"
      alt="🙂"
    /></p>
]]></description><link>https://www.c-plusplus.net/forum/post/1242281</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1242281</guid><dc:creator><![CDATA[rapso]]></dc:creator><pubDate>Fri, 09 Mar 2007 13:07:14 GMT</pubDate></item><item><title><![CDATA[Reply to Wann und wo die Endung &amp;quot;_t&amp;quot;? on Fri, 09 Mar 2007 13:07:58 GMT]]></title><description><![CDATA[<p>Bashar schrieb:</p>
<blockquote>
<p>Ob diese Konvention heute noch gebraucht wird weiß ich nicht, ich hoffe es jedenfalls nicht <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face"
      title=":)"
      alt="🙂"
    /></p>
</blockquote>
<p>Dafür nutzt man jetzt _type <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f609.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--winking_face"
      title=";)"
      alt="😉"
    /></p>
<pre><code class="language-cpp">template&lt;...&gt;
class basic_string {
// ...
public:
  typedef size_t size_type;
...
};
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/1242282</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1242282</guid><dc:creator><![CDATA[rüdiger]]></dc:creator><pubDate>Fri, 09 Mar 2007 13:07:58 GMT</pubDate></item><item><title><![CDATA[Reply to Wann und wo die Endung &amp;quot;_t&amp;quot;? on Fri, 09 Mar 2007 13:14:31 GMT]]></title><description><![CDATA[<p>ich dachte immer das '_t' steht für 'type' bzw. selbstdefinierter typ.<br />
ich finde so ein '_t' eigentlich ganz intuitiv...</p>
<p>Bashar schrieb:</p>
<blockquote>
<p>Ob diese Konvention heute noch gebraucht wird weiß ich nicht, ich hoffe es jedenfalls nicht <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face"
      title=":)"
      alt="🙂"
    /></p>
</blockquote>
<p>wieso findeste das doof?<br />
was würdest du als ersatz vorschlagen?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1242285</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1242285</guid><dc:creator><![CDATA[ten]]></dc:creator><pubDate>Fri, 09 Mar 2007 13:14:31 GMT</pubDate></item><item><title><![CDATA[Reply to Wann und wo die Endung &amp;quot;_t&amp;quot;? on Fri, 09 Mar 2007 13:16:20 GMT]]></title><description><![CDATA[<p>Wie waers mit einfach weglassen?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1242288</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1242288</guid><dc:creator><![CDATA[Apollon]]></dc:creator><pubDate>Fri, 09 Mar 2007 13:16:20 GMT</pubDate></item><item><title><![CDATA[Reply to Wann und wo die Endung &amp;quot;_t&amp;quot;? on Fri, 09 Mar 2007 13:25:14 GMT]]></title><description><![CDATA[<p>rapso schrieb:</p>
<blockquote>
<p>neu im standard sind nun auch</p>
<pre><code class="language-cpp">int8_t
int16_t
int32_t
int64_t
uint8_t
uint16_t
uint32_t
uint64_t
</code></pre>
<p>was ich persoenlich sehr gut finde :), ich ueberlege ernsthaf von meinen sonstigen typedefs darauf umzusteigen <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face"
      title=":)"
      alt="🙂"
    /></p>
</blockquote>
<p>Was heißt neu im Standart? Seit wann?<br />
Bei welchen Compilern funktioniert das? g++4?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1242293</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1242293</guid><dc:creator><![CDATA[darthdespotism]]></dc:creator><pubDate>Fri, 09 Mar 2007 13:25:14 GMT</pubDate></item><item><title><![CDATA[Reply to Wann und wo die Endung &amp;quot;_t&amp;quot;? on Fri, 09 Mar 2007 13:27:06 GMT]]></title><description><![CDATA[<p>Apollon schrieb:</p>
<blockquote>
<p>Wie waers mit einfach weglassen?</p>
</blockquote>
<p>nö, das ist schlecht.<br />
ich finde es ist schon eine wichtige information für leute, die ein programmm lesen, ob's ein selbstdefinierter typ ist oder nicht...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1242295</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1242295</guid><dc:creator><![CDATA[ten]]></dc:creator><pubDate>Fri, 09 Mar 2007 13:27:06 GMT</pubDate></item><item><title><![CDATA[Reply to Wann und wo die Endung &amp;quot;_t&amp;quot;? on Fri, 09 Mar 2007 13:37:51 GMT]]></title><description><![CDATA[<p>darthdespotism schrieb:</p>
<blockquote>
<p>rapso schrieb:</p>
<blockquote>
<p>neu im standard sind nun auch</p>
<pre><code class="language-cpp">int8_t
int16_t
int32_t
int64_t
uint8_t
uint16_t
uint32_t
uint64_t
</code></pre>
<p>was ich persoenlich sehr gut finde :), ich ueberlege ernsthaf von meinen sonstigen typedefs darauf umzusteigen <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face"
      title=":)"
      alt="🙂"
    /></p>
</blockquote>
<p>Was heißt neu im stan****? Seit wann?<br />
Bei welchen Compilern funktioniert das? g++4?</p>
</blockquote>
<p>Der Standard der noch in Arbeit ist, aber schon dieses Jahr der erste Entwurf raus kommt. Compiler gibts dafür noch nicht.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1242304</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1242304</guid><dc:creator><![CDATA[Artchi]]></dc:creator><pubDate>Fri, 09 Mar 2007 13:37:51 GMT</pubDate></item><item><title><![CDATA[Reply to Wann und wo die Endung &amp;quot;_t&amp;quot;? on Fri, 09 Mar 2007 13:39:20 GMT]]></title><description><![CDATA[<p>Weglassen ist gut wenn man Typen und Variablen z.B. durch Case unterscheidet. Wenn man aber (wie im Standard) alles klein schreibt, kann das doof werden.</p>
<p>Beispiel:</p>
<pre><code class="language-cpp">struct functor
{
    struct context
    {
    };

    functor(context&amp; context)
        : m_context(context)
    {
    }

    context&amp; m_context;
};
</code></pre>
<p>Nicht sehr hübsch. (Weiss nichtmal ob das legal ist, ich schreib sowas nie.) In dem Fall ist es IMHO besser den Typ context einfach context_t zu nennen.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1242305</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1242305</guid><dc:creator><![CDATA[hustbaer]]></dc:creator><pubDate>Fri, 09 Mar 2007 13:39:20 GMT</pubDate></item><item><title><![CDATA[Reply to Wann und wo die Endung &amp;quot;_t&amp;quot;? on Fri, 09 Mar 2007 13:39:33 GMT]]></title><description><![CDATA[<p>ten schrieb:</p>
<blockquote>
<p>Apollon schrieb:</p>
<blockquote>
<p>Wie waers mit einfach weglassen?</p>
</blockquote>
<p>nö, das ist schlecht.<br />
ich finde es ist schon eine wichtige information für leute, die ein programmm lesen, ob's ein selbstdefinierter typ ist oder nicht...</p>
</blockquote>
<p>Naja, nur in C++ sind ja alles selbt definierte Typen, außer die paar die wir sonst kennen. Jede Klasse in C++ ist ein selbstdefinierter Typ. Oder was verstehst du unter selbstdefinierter Typ?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1242307</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1242307</guid><dc:creator><![CDATA[Artchi]]></dc:creator><pubDate>Fri, 09 Mar 2007 13:39:33 GMT</pubDate></item><item><title><![CDATA[Reply to Wann und wo die Endung &amp;quot;_t&amp;quot;? on Fri, 09 Mar 2007 13:40:48 GMT]]></title><description><![CDATA[<p>hustbaer schrieb:</p>
<blockquote>
<p>Weglassen ist gut wenn man Typen und Variablen z.B. durch Case unterscheidet. Wenn man aber (wie im Standard) alles klein schreibt, kann das doof werden.</p>
<p>Beispiel:</p>
<pre><code class="language-cpp">struct functor
{
    struct context
    {
    };

    functor(context&amp; context)
        : m_context(context)
    {
    }

    context&amp; m_context;
};
</code></pre>
<p>Nicht sehr hübsch. (Weiss nichtmal ob das legal ist, ich schreib sowas nie.) In dem Fall ist es IMHO besser den Typ context einfach context_t zu nennen.</p>
</blockquote>
<p>Wird nicht gehen... struct context ist definiert, das kann man nicht mehr als Variable benutzen.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1242308</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1242308</guid><dc:creator><![CDATA[Artchi]]></dc:creator><pubDate>Fri, 09 Mar 2007 13:40:48 GMT</pubDate></item><item><title><![CDATA[Reply to Wann und wo die Endung &amp;quot;_t&amp;quot;? on Fri, 09 Mar 2007 13:43:11 GMT]]></title><description><![CDATA[<p>ten schrieb:</p>
<blockquote>
<p>Apollon schrieb:</p>
<blockquote>
<p>Wie waers mit einfach weglassen?</p>
</blockquote>
<p>nö, das ist schlecht.<br />
ich finde es ist schon eine wichtige information für leute, die ein programmm lesen, ob's ein selbstdefinierter typ ist oder nicht...</p>
</blockquote>
<p>daran glaubst du doch nicht wirklich...?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1242314</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1242314</guid><dc:creator><![CDATA[DEvent]]></dc:creator><pubDate>Fri, 09 Mar 2007 13:43:11 GMT</pubDate></item><item><title><![CDATA[Reply to Wann und wo die Endung &amp;quot;_t&amp;quot;? on Fri, 09 Mar 2007 13:54:56 GMT]]></title><description><![CDATA[<p>also bei mir haben alle von MIR definierten Typen ein großes T vorangestellt, so kann ich sogar von MIR definierte typen von standard typen unterscheiden ..... ... ... ..... ..... ich hab mich jetzt nicht wirklich hinreissen lassen den send button zu drücken oder ?</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1242319</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1242319</guid><dc:creator><![CDATA[Ceos]]></dc:creator><pubDate>Fri, 09 Mar 2007 13:54:56 GMT</pubDate></item><item><title><![CDATA[Reply to Wann und wo die Endung &amp;quot;_t&amp;quot;? on Sat, 10 Mar 2007 00:22:39 GMT]]></title><description><![CDATA[<p>darthdespotism schrieb:</p>
<blockquote>
<p>rapso schrieb:</p>
<blockquote>
<p>neu im standard sind nun auch</p>
<pre><code class="language-cpp">int8_t
int16_t
int32_t
int64_t
uint8_t
uint16_t
uint32_t
uint64_t
</code></pre>
<p>was ich persoenlich sehr gut finde :), ich ueberlege ernsthaf von meinen sonstigen typedefs darauf umzusteigen <img
      src="https://www.c-plusplus.net/forum/plugins/nodebb-plugin-emoji/emoji/emoji-one/1f642.png?v=ab1pehoraso"
      class="not-responsive emoji emoji-emoji-one emoji--slightly_smiling_face"
      title=":)"
      alt="🙂"
    /></p>
</blockquote>
<p>Was heißt neu im stan****? Seit wann?<br />
Bei welchen Compilern funktioniert das? g++4?</p>
</blockquote>
<p>Das ist aus dem C99-Standard (und wir auch hoffentlich im C++09 Standard aufgenommen!)</p>
<p>Boost hat dafür boost/cstdint.hpp. Ansonsten schau mal ob dein Compiler ein stdint.h hat.</p>
<p>&lt;edit&gt;Fehler behoben: stdint anstelle stddef&lt;/edit&gt;</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1242320</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1242320</guid><dc:creator><![CDATA[rüdiger]]></dc:creator><pubDate>Sat, 10 Mar 2007 00:22:39 GMT</pubDate></item><item><title><![CDATA[Reply to Wann und wo die Endung &amp;quot;_t&amp;quot;? on Fri, 09 Mar 2007 14:04:16 GMT]]></title><description><![CDATA[<p>Artchi schrieb:</p>
<blockquote>
<p>ten schrieb:</p>
<blockquote>
<p>Apollon schrieb:</p>
<blockquote>
<p>Wie waers mit einfach weglassen?</p>
</blockquote>
<p>nö, das ist schlecht.<br />
ich finde es ist schon eine wichtige information für leute, die ein programmm lesen, ob's ein selbstdefinierter typ ist oder nicht...</p>
</blockquote>
<p>Naja, nur in C++ sind ja alles selbt definierte Typen, außer die paar die wir sonst kennen. Jede Klasse in C++ ist ein selbstdefinierter Typ. Oder was verstehst du unter selbstdefinierter Typ?</p>
</blockquote>
<p>da hast du natürlich recht.<br />
ich hab's gar nicht aus der sicht eines c++ coders betrachtet.<br />
hinter jede klasse ein _t zu schreiben sieht natürlich auch doof aus.<br />
wenn ich c++'ler wäre, würde ich vielleicht nur hinter reine datenklassen das _t schreiben, und bei solchen, in denen die funktionalität steckt eben nicht...</p>
<p>DEvent schrieb:</p>
<blockquote>
<p>ten schrieb:</p>
<blockquote>
<p>Apollon schrieb:</p>
<blockquote>
<p>Wie waers mit einfach weglassen?</p>
</blockquote>
<p>nö, das ist schlecht.<br />
ich finde es ist schon eine wichtige information für leute, die ein programmm lesen, ob's ein selbstdefinierter typ ist oder nicht...</p>
</blockquote>
<p>daran glaubst du doch nicht wirklich...?</p>
</blockquote>
<p>doch, guck' mal:</p>
<pre><code>typedef struct blah {...} blah_t;
void f (blah_t *b);
blah_t g(void);
...
blah_t blah, anotherblah;
f (&amp;blah);
anotherblah = g();
... // usw.
</code></pre>
<p>sieht man doch gleich dass 'blah_t' ein typ ist.<br />
ich finde das _t macht den code etwas leserlicher als ohne...</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1242324</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1242324</guid><dc:creator><![CDATA[ten]]></dc:creator><pubDate>Fri, 09 Mar 2007 14:04:16 GMT</pubDate></item><item><title><![CDATA[Reply to Wann und wo die Endung &amp;quot;_t&amp;quot;? on Fri, 09 Mar 2007 14:10:57 GMT]]></title><description><![CDATA[<p>Artchi schrieb:</p>
<blockquote>
<p>...<br />
Der Standard der noch in Arbeit ist, aber schon dieses Jahr der erste Entwurf raus kommt. Compiler gibts dafür noch nicht.</p>
</blockquote>
<p>ich glaube das ist bei allen compilern mitlerweile dabei (mein cell-gcc kann das auf jeden fall, VC++ kann das glaube ich auch), man muss nur etwas dafuer includen, wenn es native unterstuetzung faende waere das super, ist ja nicht mehr lang hin, wobei boese zungen behaupten dass es sich bis C++0f hinziehen koennte mit dem C++0x-standard.</p>
<p>ich denke auch ein wenig, dass es garnicht gedacht ist diese typen direkt zu benutzen, sondern als stabile basis fuer die eigenen typedefs __int64, long long... das suckt einfach.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1242328</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1242328</guid><dc:creator><![CDATA[rapso]]></dc:creator><pubDate>Fri, 09 Mar 2007 14:10:57 GMT</pubDate></item><item><title><![CDATA[Reply to Wann und wo die Endung &amp;quot;_t&amp;quot;? on Fri, 09 Mar 2007 15:46:01 GMT]]></title><description><![CDATA[<p><a class="plugin-mentions-user plugin-mentions-a" href="https://www.c-plusplus.net/forum/uid/1029">@rapso</a>:<br />
Ich denke er meinte den *ganzen* neuen Standard, nicht bloss die int32_t Geschichte (die MSVC im Übrigen nicht kennt).</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1242392</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1242392</guid><dc:creator><![CDATA[hustbaer]]></dc:creator><pubDate>Fri, 09 Mar 2007 15:46:01 GMT</pubDate></item><item><title><![CDATA[Reply to Wann und wo die Endung &amp;quot;_t&amp;quot;? on Fri, 09 Mar 2007 16:06:16 GMT]]></title><description><![CDATA[<p>Genau, meine den C++2009-Standard. Weil offiziell kennt C++ das C99 nicht. Deshalb ist es legitim das MSVC die ganzen oben genannten Typen nicht kennt, weil MSVC eher ein C++-Compiler und kein C-Compiler ist.<br />
GCC ist dagegen eine Compiler Collection (aha!) und hat deshalb einmal einen C++-Compiler und C-Compiler der hoffentlich C99 kennt.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1242403</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1242403</guid><dc:creator><![CDATA[Artchi]]></dc:creator><pubDate>Fri, 09 Mar 2007 16:06:16 GMT</pubDate></item><item><title><![CDATA[Reply to Wann und wo die Endung &amp;quot;_t&amp;quot;? on Fri, 09 Mar 2007 16:43:30 GMT]]></title><description><![CDATA[<p>hustbaer schrieb:</p>
<blockquote>
<p><a class="plugin-mentions-user plugin-mentions-a" href="https://www.c-plusplus.net/forum/uid/1029">@rapso</a>:<br />
Ich denke er meinte den *ganzen* neuen Standard, nicht bloss die int32_t Geschichte (die MSVC im Übrigen nicht kennt).</p>
</blockquote>
<p>gibt es einen noch neueren als <a href="http://en.wikipedia.org/wiki/C++0x" rel="nofollow">C++0x</a> von dem ich sprach?</p>
<p>und stimmt, man muss sich die noetigen header(inttypes.h) runterladen.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1242431</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1242431</guid><dc:creator><![CDATA[rapso]]></dc:creator><pubDate>Fri, 09 Mar 2007 16:43:30 GMT</pubDate></item><item><title><![CDATA[Reply to Wann und wo die Endung &amp;quot;_t&amp;quot;? on Fri, 09 Mar 2007 16:46:46 GMT]]></title><description><![CDATA[<p>Artchi schrieb:</p>
<blockquote>
<p>Deshalb ist es legitim das MSVC die ganzen oben genannten Typen nicht kennt, weil MSVC eher ein C++-Compiler und kein C-Compiler ist.</p>
</blockquote>
<p>diese _t typen stecken in der 'stdint.h'.<br />
ich schätze man muss die nur bei msvc includen, dann hat man die.<br />
kann mir nicht vorstellen, dass ms das einfach vergessen hat.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1242435</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1242435</guid><dc:creator><![CDATA[ten]]></dc:creator><pubDate>Fri, 09 Mar 2007 16:46:46 GMT</pubDate></item><item><title><![CDATA[Reply to Wann und wo die Endung &amp;quot;_t&amp;quot;? on Fri, 09 Mar 2007 22:54:47 GMT]]></title><description><![CDATA[<p>Übrigens sind die in Boost auch in cstdint.hpp, nicht cstddef.hpp afaik.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1242669</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1242669</guid><dc:creator><![CDATA[.filmor]]></dc:creator><pubDate>Fri, 09 Mar 2007 22:54:47 GMT</pubDate></item><item><title><![CDATA[Reply to Wann und wo die Endung &amp;quot;_t&amp;quot;? on Fri, 09 Mar 2007 23:15:31 GMT]]></title><description><![CDATA[<p>.filmor schrieb:</p>
<blockquote>
<p>Übrigens sind die in Boost auch in cstdint.hpp, nicht cstddef.hpp afaik.</p>
</blockquote>
<p>jo, war ein Fehler von mir.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1242676</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1242676</guid><dc:creator><![CDATA[rüdiger]]></dc:creator><pubDate>Fri, 09 Mar 2007 23:15:31 GMT</pubDate></item><item><title><![CDATA[Reply to Wann und wo die Endung &amp;quot;_t&amp;quot;? on Wed, 14 Mar 2007 11:40:44 GMT]]></title><description><![CDATA[<p>Muß den nochmal rauskramen...</p>
<p>Habe was gefunden, im null-Pointer Proposal:</p>
<blockquote>
<p>We also provide the typedef: typedef decltype(nullptr) nullptr_t;<br />
nullptr_t is not a reserved word. <strong>It is a typedef (as its _t typedef indicates)</strong> ...</p>
</blockquote>
<p>Quelle: <a href="http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2214.pdf" rel="nofollow">http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2007/n2214.pdf</a></p>
<p>Wenn ich das richtig interpretiere: typedefs die aus einem build-in Typ entstehen, sollte man mit einem _t enden lassen.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/1245323</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/1245323</guid><dc:creator><![CDATA[Artchi]]></dc:creator><pubDate>Wed, 14 Mar 2007 11:40:44 GMT</pubDate></item></channel></rss>