<?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[vector frage]]></title><description><![CDATA[<p>Hallo, ich find zu push_back immer nur Eingaben von einem Element a la</p>
<pre><code>Zahlen.push_back(8);
    Zahlen.push_back(7);
    Zahlen.push_back(6);
</code></pre>
<p>Man will sich doch solch lange Befehlsreihe sparen. Da ich pro umUmdrehung eine Fünferkaskade pushbacken will, frage ich hier mal ausdrücklichst: Ist sowas nicht möglich?</p>
<pre><code>Zahlen.push_back(8; 7; 6; var3; Func_zahltrommel(y));
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/topic/334850/vector-frage</link><generator>RSS for Node</generator><lastBuildDate>Sat, 25 Apr 2026 03:57:10 GMT</lastBuildDate><atom:link href="https://www.c-plusplus.net/forum/topic/334850.rss" rel="self" type="application/rss+xml"/><pubDate>Thu, 15 Oct 2015 16:14:12 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to vector frage on Thu, 15 Oct 2015 16:15:48 GMT]]></title><description><![CDATA[<p>Hallo, ich find zu push_back immer nur Eingaben von einem Element a la</p>
<pre><code>Zahlen.push_back(8);
    Zahlen.push_back(7);
    Zahlen.push_back(6);
</code></pre>
<p>Man will sich doch solch lange Befehlsreihe sparen. Da ich pro umUmdrehung eine Fünferkaskade pushbacken will, frage ich hier mal ausdrücklichst: Ist sowas nicht möglich?</p>
<pre><code>Zahlen.push_back(8; 7; 6; var3; Func_zahltrommel(y));
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/2471148</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2471148</guid><dc:creator><![CDATA[Sonne55]]></dc:creator><pubDate>Thu, 15 Oct 2015 16:15:48 GMT</pubDate></item><item><title><![CDATA[Reply to vector frage on Thu, 15 Oct 2015 16:24:36 GMT]]></title><description><![CDATA[<pre><code>Zahlen.insert(Zahlen.end(), {8,7,6,ver3,Func_zahltrommel(Y)});
</code></pre>
]]></description><link>https://www.c-plusplus.net/forum/post/2471151</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2471151</guid><dc:creator><![CDATA[Columbo]]></dc:creator><pubDate>Thu, 15 Oct 2015 16:24:36 GMT</pubDate></item><item><title><![CDATA[Reply to vector frage on Thu, 15 Oct 2015 16:36:18 GMT]]></title><description><![CDATA[<p>Danke, oder macht sich multimap für den Zweck besser. Ich gebe immer 5 Elemente ein. Brauche aber auch immer den Zugriff auf die 5 um damit rechnen zu können. Es muß schnell gehen. Wird nichts gelöscht, eingeschoben oder umpositioniert in dem Container, nur hinten rangehängt.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2471152</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2471152</guid><dc:creator><![CDATA[Sonne55]]></dc:creator><pubDate>Thu, 15 Oct 2015 16:36:18 GMT</pubDate></item><item><title><![CDATA[Reply to vector frage on Thu, 15 Oct 2015 16:39:20 GMT]]></title><description><![CDATA[<p>Da eignet sich eine struct für die 5 elemente. Wenn du abschätzen kannst wieviel Einträge es werden, dann schau dir mal vector::reserve an.</p>
]]></description><link>https://www.c-plusplus.net/forum/post/2471153</link><guid isPermaLink="true">https://www.c-plusplus.net/forum/post/2471153</guid><dc:creator><![CDATA[Techel]]></dc:creator><pubDate>Thu, 15 Oct 2015 16:39:20 GMT</pubDate></item></channel></rss>