active questions tagged c++0x - Stack Overflow most recent 30 from stackoverflow.com 2009-12-10T10:10:18Z http://stackoverflow.com/feeds/tag/c++0x http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1877571/what-is-your-favorite-c0x-sample 13 What is your favorite "C++0x" sample? AraK 2009-12-09T23:07:52Z 2009-12-10T08:59:34Z <p>I am becoming more and more excited about C++0x these days. It would be interesting to see some elegant examples of the new power. What is your favorite sample that makes other C++ programmers <em>smile</em>?</p> <p>For me it was the following one which I saw in <a href="http://en.wikipedia.org/wiki/C%2B%2B0x#Extensible%5Frandom%5Fnumber%5Ffacility" rel="nofollow">Wikipedia</a>, I just modified it little bit:</p> <pre><code>uniform_int_distribution&lt;int&gt; distribution(1, 6); mt19937 engine; auto dice = bind(distribution, engine); int random = dice(); // Generate a uniform integral variate between 1 and 6 </code></pre> <p>The beautiful things about this code, is that it shows the new random number stuff in the enhanced <code>std</code> library. The use of functional composition with <code>auto-inference</code> is really powerful and eye pleasing. I am amazed how someone could write code at this level of abstraction, and in the same time the compiler has all the information to optimize this code greatly.</p> http://stackoverflow.com/questions/1863784/uniform-initialization-in-c0x-when-to-use-instead-of 4 Uniform initialization in C++0x, when to use () instead of {}? AraK 2009-12-08T00:18:21Z 2009-12-08T21:45:09Z <p>Hi,</p> <p>Is there a rule of thumb to decide when to use the old syntax <strong><code>()</code></strong> instead of the new syntax <strong><code>{}</code></strong>?</p> <p>To initialize a struct:</p> <pre><code>struct myclass { myclass(int px, int py) : x(px), y(py) {} private: int x, y; }; ... myclass object{0, 0}; </code></pre> <p>Now in the case of a <code>vector</code> for example, it has many constructors. Whenever I do the following:</p> <pre><code>vector&lt;double&gt; numbers{10}; </code></pre> <p>I get a vector of <strong>1</strong> element instead of one with <strong>10</strong> elements as one of the constructors is:</p> <pre><code>explicit vector ( size_type n, const T&amp; value= T(), const Allocator&amp; = Allocator() ); </code></pre> <p>My suspicion is that whenever a class defines an <code>initializer list</code> constructor as in the case of a vector, it gets called with the <strong><code>{}</code></strong> syntax.</p> <p>So, is what I am thinking correct. i.e. <strong>Should I revert to the old syntax only whenever a class defines an initializer list constructor to call a different constructor?</strong> e.g. to correct the above code:</p> <pre><code>vector&lt;double&gt; numbers(10); // 10 elements instead of just one element with value=10 </code></pre> http://stackoverflow.com/questions/880882/optimizing-boost-unordered-map-and-sets-c 0 optimizing boost unordered map and sets, C++ unknown (yahoo) 2009-05-19T03:47:46Z 2009-12-08T20:54:46Z <p>Dear StackOverFlowers,</p> <p>I will be parsing 60GB of text and doing a lot of insert and lookups in maps. I just started using boost::unordered_set and boost::unordered_map As my program starts filling in these containers they start growing bigger and bigger and i was wondering if this would be a good idea to pre allocate memory for these containers. something like mymap::get_allocator().allocate(N); ?</p> <p>or should i just leave them to allocate and figure out grow factors by themselves? the codes look like this</p> <pre><code>boost::unordered_map &lt;string,long&gt; words_vs_frequency, wordpair_vs_frequency; boost::unordered_map &lt;string,float&gt; word_vs_probability, wordpair_vs_probability, wordpair_vs_MI; //... ... ... N = words_vs_frequency.size(); long y =0; float MIWij =0.0f, maxMI=-999999.0f; for (boost::unordered_map &lt;string,long&gt;::iterator i=wordpair_vs_frequency.begin(); i!=wordpair_vs_frequency.end(); ++i){ if (i-&gt;second &gt;= BIGRAM_OCCURANCE_THRESHOLD) { y++; Wij = i-&gt;first; WordPairToWords(Wij, Wi,Wj); MIWij = log ( wordpair_vs_probability[Wij] / (word_vs_probability[Wi] * word_vs_probability[Wj]) ); // keeping only the pairs which MI value greater than if (MIWij &gt; MUTUAL_INFORMATION_THRESHOLD) wordpair_vs_MI[ Wij ] = MIWij; if(MIWij &gt; maxMI ) maxMI = MIWij; } } </code></pre> <p>Thanks in advance</p> http://stackoverflow.com/questions/1857484/c0x-compiler-hooks-and-hard-coded-languages-features 2 C++0x, Compiler hooks and hard coded languages features. Dave 2009-12-07T02:35:05Z 2009-12-07T07:46:55Z <p>I'm a little curious about some of the new features of C++0x. In particular <a href="http://www.open-std.org/JTC1/SC22/WG21/docs/papers/2009/n2930.html" rel="nofollow"><strong>range-based for loops</strong></a> and <a href="http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2672.htm" rel="nofollow"><strong>initializer lists</strong></a>. Both features require a user-defined class in order to function correctly.</p> <p>I came accross <a href="http://stackoverflow.com/questions/247538/which-standard-c-classes-cannot-be-reimplemented-in-c">this post</a>, and while the top-answer was helpful. I don't know if it's entirely correct <em>(I'm probably just completely misunderstanding, see 3rd comment on first answer)</em>. According to the <a href="http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2672.htm" rel="nofollow">current specifications</a> for initializer lists, the header defines one type:</p> <pre><code>template&lt;class E&gt; class initializer_list { public: initializer_list(); size_t size() const; // number of elements const E* begin() const; // first element const E* end() const; // one past the last element }; </code></pre> <p>You can see this in the specifications, just Ctrl + F *'class initializer_list'*.</p> <p>In order for <code>= {1,2,3}</code> to be implicitly casted into the <code>initializer_list</code> class, the compiler HAS to have some knowledge of the relationship between <code>{}</code> and <code>initializer_list</code>. There is no constructor that receives anything, so the initializer_list as far as I can tell is a wrapper that gets bound to whatever the compiler is actually generating.</p> <p>It's the same with the <code>for( : )</code> loop, which also requires a user-defined type to work (though according to the specs, updated to not require any code for arrays and initializer lists. But initializer lists require <code>&lt;initializer_list&gt;</code>, so it's a user-defined code requirement by proxy).</p> <p>Am I misunderstanding completely how this works here? I'm not wrong in thinking that these new features do infact rely extremely heavily on compiler code. It feels as if the features are half-baked, and instead of building the entire feature into the compiler, it's being half-done by the compiler and half done in includes. What's the reason for this?</p> http://stackoverflow.com/questions/1623250/stdregex-is-there-some-lib-that-needs-to-be-linked 2 std::regex -- is there some lib that needs to be linked? Scott 2009-10-26T05:38:35Z 2009-12-04T05:34:52Z <p>I get a linker error with the following code:</p> <pre><code>#include &lt;regex&gt; int main() { std::regex rgx("ello"); return 0; } test.o: In function `basic_regex': /usr/lib/gcc/i586-redhat-linux/4.4.1/../../../../include/c++/4.4.1/tr1_impl/regex:769: undefined reference to `std::basic_regex&lt;char, std::regex_traits&lt;char&gt; &gt;::_M_compile()' collect2: ld returned 1 exit status </code></pre> http://stackoverflow.com/questions/716904/preparing-for-the-next-c-standard 11 Preparing for the next C++ standard Neil Butterworth 2009-04-04T11:03:52Z 2009-12-03T16:36:10Z <p>The spate of questions regarding <code>BOOST_FOREACH</code> prompts me to ask users of the Boost library what (if anything) they are doing to prepare their code for portability to the proposed new C++ standard (aka C++0x). For example, do you write code like this if you use <code>shared_ptr</code>:</p> <pre><code>#ifdef CPPOX #include &lt;memory&gt; #else #include "boost/shared_ptr.hpp" #endif </code></pre> <p>There is also the namespace issue - in the future, <code>shared_ptr</code> will be part of the <code>std</code>, namespace - how do you deal with that?</p> <p>I'm interested in these questions because I've decided to bite the bullet and start learning boost seriously, and I'd like to use best practices in my code.</p> <p><strong>Not exactly a flood of answers - does this mean it's a non-issue? Anyway, thanks to those that replied; I'm accepting jalfs answer because I like being advised to do nothing!</strong></p> http://stackoverflow.com/questions/1414897/using-gccs-c0x-mode-in-production 8 Using GCC's C++0x mode in production? rpg 2009-09-12T11:19:28Z 2009-12-03T06:36:18Z <p>Is anyone using the GCC 4.4.0 <a href="http://gcc.gnu.org/gcc-4.4/cxx0x%5Fstatus.html" rel="nofollow">C++0x</a> support in production? I'm thinking about using it with the latest MinGW, but I'm not sure if it's mature enough.</p> <p>I'm interested in:</p> <ul> <li>TR1 support</li> <li>auto</li> <li>initializer lists</li> </ul> http://stackoverflow.com/questions/1822223/how-to-find-whats-new-in-vc-v10 3 How to find what's new in VC++ v10? John 2009-11-30T20:30:22Z 2009-11-30T20:46:36Z <p>Hello,</p> <p>Googling nor binging "VC++ What's new C++0x" gives me nothing that tells me what is new.Is there an official page at msdn or something similiar that contains the information for VC++ 10? I've seen such for C#,there must be one for what I'd enjoy to read.</p> <p>If not, please list the new features available in Visual Studio 2010 for VC++.</p> http://stackoverflow.com/questions/1754397/are-you-using-c0x-today 8 Are you using C++0x today? [closed] Roger Pate 2009-11-18T08:19:06Z 2009-11-19T03:20:03Z <p>How many people are following the discussion surrounding and design of C++0x? How has it affected your design choices in your own programs, even before its release? (Anything common you're doing differently?) Are you using any parts of it now, either in production or otherwise?</p> <p>For example, I know some who swear by the new use of 'auto' for situations like declaring an iterator in a for-loop. They say their compiler supports it today, they understand it, and they're sure it will be included. *cough*concepts*cough*</p> <p>And once the next standard is final, do you think you'd use it immediately? Obviously, the compiler must support it, but there's still co-workers, ancillary tools, and your own unknown misunderstandings that might prevent use. What factors matter most to you?</p> http://stackoverflow.com/questions/1744407/cache-line-alignment-need-clarification-on-article 5 Cache Line Alignment (Need clarification on article) int3 2009-11-16T19:44:15Z 2009-11-17T05:39:23Z <p>I've recently encountered what I think is a false-sharing problem in my application, and I've looked up <a href="http://www.ddj.com/go-parallel/article/showArticle.jhtml;jsessionid=FL15ZQFGS0YZFQE1GHRSKHWATMY32JVN?articleID=217500206&amp;pgno=4" rel="nofollow">Sutter's article</a> on how to align my data to cache lines. He suggests the following C++ code:</p> <pre><code>// C++ (using C++0x alignment syntax) template&lt;typename T&gt; struct cache_line_storage { [[ align(CACHE_LINE_SIZE) ]] T data; char pad[ CACHE_LINE_SIZE &gt; sizeof(T) ? CACHE_LINE_SIZE - sizeof(T) : 1 ]; }; </code></pre> <p>I can see how this would work when <code>CACHE_LINE_SIZE &gt; sizeof(T)</code> is true -- the struct <code>cache_line_storage</code> just ends up taking up one full cache line of memory. However, when the <code>sizeof(T)</code> is larger than a single cache line, I would think that we should pad the data by <code>CACHE_LINE_SIZE - T % CACHE_LINE_SIZE</code> bytes, so that the resulting struct has a size that is an integral multiple of the cache line size. What is wrong with my understanding? Why does padding with 1 byte suffice?</p> http://stackoverflow.com/questions/1721834/c-stl-unorderedmap-problems-and-doubts 1 C++ STL unordered_map problems and doubts gotch4 2009-11-12T12:28:21Z 2009-11-16T17:15:55Z <p>Hello, after some years in Java and C# now I'm back to C++. Of course my programming style is influenced by those languages and I tend to feel the need of a special component that I used massively: the HASH MAP. In STL there is the hash_map, that GCC says it's deprecated and I should use unordered_map. So I turned to it. I confess I'm not sure of the portability of what I am doing as I had to use a compiler switch to turn on the feature -std=c++0x that is of the upcoming standard. Anyway I'm happy with this. As long as I can't get it working since if I put in my class </p> <pre><code>std::unordered_map&lt;unsigned int, baseController*&gt; actionControllers; </code></pre> <p>and in a method:</p> <pre><code>void baseController::attachActionController(unsigned int *actionArr, int len, baseController *controller) { for (int i = 0; i &lt; len; i++){ actionControllers.insert(actionArr[i], controller); } } </code></pre> <p>it comes out with the usual ieroglyphs saying it can't find the insert around... hints?</p> http://stackoverflow.com/questions/1165071/fstream-linking-error-in-g-with-stdgnu0x 2 fstream linking error in g++ with -std=gnu++0x Sahasranaman MS 2009-07-22T12:56:14Z 2009-11-13T09:55:23Z <p>Hello, I'm have an application built with the -std=gnu++0x parameter in tdm-mingw g++ 4.4.0 on windows.</p> <p>It is using an ofstream object and when I build, it gives the following linking error:</p> <pre><code>c:\opt\Noddler/main_func.cpp:43: undefined reference to `std::basic_ofstream&lt;char, std::char_traits&lt;char&gt; &gt;::basic_ofstream(std::string const&amp;, std::_Ios_Openmode)' </code></pre> <p>It builds properly when using the default older standard.</p> <p>This is the only error, and trying to link with -lstdc++ doesn't help. Has someone experienced this before? Can I get any suggestions?</p> <p>Edit: I'm creating an ofstream object like this:</p> <pre><code>std::string filename = string("noddler\\") + callobj.get_ucid() + "_" + callobj.gram_counter() + ".grxml"; ofstream grxml_file(string("C:\\CWorld\\Server\\Grammar\\") + filename); ... grxml_file.close(); </code></pre> <p>It is getting compiled fine, but not getting linked.</p> http://stackoverflow.com/questions/1534626/are-there-any-updates-of-localization-support-in-c0x 6 Are there any updates of localization support in C++0x? Artyom 2009-10-07T22:39:21Z 2009-11-10T10:51:37Z <p>The more I work with C++ locale facets, more I understand --- they are broken.</p> <ul> <li><code>std::time_get</code> -- is not symmetric with <code>std::time_put</code> (as it in C strftime/strptime) and does not allow easy parsing of times with AM/PM marks.</li> <li>I <a href="http://art-blog.no-ip.info/cppcms/blog/post/49" rel="nofollow">descovered</a> recently that simple number formatting may produce illegal UTF-8 under certain locales (like <code>ru_RU.UTF-8</code>).</li> <li><code>std::ctype</code> is very simplistic assuming that to upper/to lower can be done on per-character base (case conversion may change number of characters and it is context dependent).</li> <li><code>std::collate</code> -- does not support collation strength (case sensitive or insensitive).</li> <li>There is not way to specify timezone different from global timezone in time formatting.</li> </ul> <p>And much more...</p> <ul> <li>Does anybody knows whether any changes are expected in standard facets in C++0x?</li> <li>Is there any way to bring an importance of such changes?</li> </ul> <p>Thanks.</p> <p><strong>EDIT:</strong> Clarifications in case the link is not accessible: </p> <p><code>std::numpunct</code> defines thousands separator as char. So when separator in U+2002 -- different kind of space it can't be reproduced as single char in UTF-8 but as multiple byte sequence.</p> <p>In C API <code>struct lconv</code> defines thousands separator as string and does not suffers from this problem. So, when you try to format numbers with separators outside of ASCII with UTF-8 locale, invalid UTF-8 is produced.</p> <p>To reproduce this bug write 1234 to std:ostream with imbued <code>ru_RU.UTF-8</code> locale</p> <p><strong>EDIT2:</strong> I must admit that POSIX C localization API works much smoother:</p> <ul> <li>There is inverse of strftime -- strptime (strftime does same as <code>std::time_put::put</code>)</li> <li>No problems with number formatting because of the point I mentioned above.</li> </ul> <p>However it is still for from being perfecet.</p> <p><strong>EDIT3:</strong> According to the latest notes about C++0x I can see that <code>std::time_get::get</code> -- similar to <code>strptime</code> and opposite of <code>std::time_put::put</code>.</p> http://stackoverflow.com/questions/1686348/what-is-defined-if-a-compiler-is-cpp0x-compliant 4 What is #defined if a compiler is Cpp0x compliant? Viktor Sehr 2009-11-06T09:06:02Z 2009-11-09T06:29:05Z <p>Is there any official, or inofficial, #defines for when a compiler is Cpp0x compliant? Even better, for specific Cpp0x functionality (~#cpp0xlambda, #cpp0xrvalue etc)?</p> <p>(Haven't found anything about this on the net)</p> http://stackoverflow.com/questions/1693005/copy-elision-on-visual-c-2010-beta-2 3 Copy elision on Visual C++ 2010 Beta 2 dvide 2009-11-07T13:19:27Z 2009-11-08T12:21:06Z <p>I was reading <a href="http://cpp-next.com/archive/2009/08/want-speed-pass-by-value/" rel="nofollow">'Want Speed? Pass by Value'</a> on the <a href="http://cpp-next.com" rel="nofollow">C++ Next blog</a> and created the following program to get a feel for copy elision and move semantics in C++0x: <a href="http://pastebin.com/f39c826c6" rel="nofollow">http://pastebin.com/f39c826c6</a></p> <p>However I am perplexed by one thing. </p> <p>Here is the output I get when compiled in release mode on Visual C++ 10.0 (Beta 2):</p> <blockquote> <p>Move assign from RVO:<br> Construct instance 1 (no data)<br> Construct instance 2 (with data)<br> Construct instance 3 from a move of 2<br> Destroy instance 2<br> Assign to instance 1 from 3<br> Destroy instance 3<br> Destroy instance 1<br> Move elided: No </p> <p>Move assign from RVO simple:<br> Construct instance 1 (no data)<br> Construct instance 2 (with simple data)<br> Assign to instance 1 from 2<br> Destroy instance 2<br> Destroy instance 1<br> Move elided: Yes </p> <p>Move assign from NRVO:<br> Construct instance 1 (no data)<br> Construct instance 2 (with data)<br> Assign to instance 1 from 2<br> Destroy instance 2<br> Destroy instance 1<br> Move elided: Yes </p> <p>Move assign from NRVO simple:<br> Construct instance 1 (no data)<br> Construct instance 2 (with simple data)<br> Assign to instance 1 from 2<br> Destroy instance 2<br> Destroy instance 1<br> Move elided: Yes</p> </blockquote> <p>As you can see, all of the moves are elided except for the first one. </p> <p>My question is why can't the compiler perform RVO with a MoveableClass(std::vector) at line 86, but can with a MoveableClass(int) at line 97? Is this just a bug with MSVC or is there a good reason for this? And if there is a good reason, why can it still perform NRVO on a MoveableClass(std::vector) at line 91?</p> <p>I'd like to understand it so I can go to sleep happy :)</p> <p>Thanks</p> http://stackoverflow.com/questions/1310643/const-reference-binding-to-an-rvalue 7 const reference binding to an rvalue fnieto 2009-08-21T08:11:41Z 2009-11-07T16:48:05Z <p>Working on <a href="http://stackoverflow.com/questions/1304680">this</a> question, I found an inconsistent behavior. </p> <p>Why reference binding behave different in a constructor from a common function?</p> <pre><code>struct A { }; struct B : public A { B(){} private: B(const B&amp;); }; void f( const B&amp; b ) {} int main() { A a( B() ); // works A const &amp; a2 = B(); // C++0x: works, C++03: fails f( B() ); // C++0x: works, C++03: fails } </code></pre> <p>I have tested it for C++03 with g++-4.1 and Comeau 4.2.45.2 in strict C++03 mode and with C++0x extensions disabled. I got same results.</p> <p>For C++0x was tested with g++-4.4 and Comeau 4.3.9 in relaxed mode and with C++0x extensions enabled. I got same results.</p> http://stackoverflow.com/questions/1666176/intermediate-results-using-expression-templates 0 Intermediate results using expression templates PT 2009-11-03T09:19:50Z 2009-11-04T09:17:26Z <p>Hi,</p> <p>in C++ Template Metaprogramming : Concepts, Tools, and Techniques from Boost and Beyond</p> <blockquote> <p>... One drawback of expression templates is that they tend to encourage writing large, complicated expressions, because evaluation is only delayed until the assignment operator is invoked. If a programmer wants to reuse some intermediate result without evaluating it early, she may be forced to declare a complicated type like:</p> </blockquote> <pre><code>Expression&lt; Expression&lt;Array,plus,Array&gt;, plus, Expression&lt;Array,minus,Array&gt; &gt; intermediate = a + b + (c - d); </code></pre> <blockquote> <p>(or worse). Notice how this type not only exactly and redundantly reflects the structure of the computationand so would need to be maintained as the formula changes but also overwhelms it? This is a long-standing problem for C++ DSELs. The usual workaround is to capture the expression using type erasure, but in that case one pays for dynamic dispatching. There has been much discussion recently, spearheaded by Bjarne Stroustrup himself, about reusing the vestigial auto keyword to get type deduction in variable declarations, so that the above could be rewritten as:</p> </blockquote> <pre><code>auto intermediate = a + b + (c - d); </code></pre> <blockquote> <p>This feature would be a huge advantage to C++ DSEL authors and users alike...</p> </blockquote> <p>Is it possible to solve this problem with the current c++ std. (non C++0X)</p> <p>For Example i want to write a Expression like: </p> <p>Expr X,Y</p> <p>Matrix A,B,C,D</p> <p>X=A+B+C</p> <p>Y=X+C</p> <p>D:=X+Y</p> <p>Where operator := evaluate the expression at the latest Time.</p> http://stackoverflow.com/questions/1647895/what-does-staticassert-do-and-what-would-you-use-it-for 3 What does static_assert do, and what would you use it for? AraK 2009-10-30T03:35:15Z 2009-10-30T10:28:49Z <p>Could you give an example where <code>static_assert(...) 'C++0x'</code> would solve the problem in hand elegantly?</p> <p>I am familiar with run-time <code>assert(...)</code>. When should I prefer <code>static_assert(...)</code> over regular <code>assert(...)</code>?</p> <p>Also, in <code>boost</code> there is something called <code>BOOST_STATIC_ASSERT</code>, is it the same as <code>static_assert(...)</code>?</p> http://stackoverflow.com/questions/1630042/is-there-c-library-to-create-strong-enums 2 Is there C++ library to create strong Enums ? Ɓukasz Lew 2009-10-27T10:56:10Z 2009-10-28T11:47:09Z <p>Ideally I would like a following examples to work, but I guess some of it is not implementable in C++.</p> <pre><code>{ typedef StrongEnum&lt;Red=0, Green=1, Blue=2&gt; Color; // not a C++ syntax Color c = Color::Red; // static const Color d; //error: default constructor is private Color d = c; Color e = Color::OfInt(5); // ifdef DEBUG - Runtime error: Enum out of range int sum = 0; // I do have these macros, but separate for each enum - FOREACH_COLOR(c) FOREACH_ENUM (Color c) { sum += c.ToInt (); } ArrayMap&lt;Color, string&gt; map; // Internally this is const size array, possible map [Color::Red] = "red"; // because Color have static const Limit = 3 inisde. // Advanced: EnumPair does bitpacking. // currently I implement it manually for every pair of Enum's I need. typedef EnumPair &lt;door=Color, window=Color&gt; ColorPair; // I guess I can't get this, can I? ColorPair pair (door = Color::Red, window = Color::Green); // I guess I can't give the labels here or one line above, can I? Color w = pair.window; Color w = pair.window (); } </code></pre> <p>I use them a lot and currently I I write each one from the scratch. I am aware that a complete generic solution is a dream, so I welcome any partial solutions. Maybe somebody created a library or a code generator?</p> <p><strong>Update 1:</strong></p> <p><a href="http://stackoverflow.com/questions/217549/which-typesafe-enum-in-c-are-you-using">This</a> and <a href="http://stackoverflow.com/questions/300592/enum-in-c-like-enum-in-ada">this</a> questions are related. I'm investigating which issues can be solved with them.</p> http://stackoverflow.com/questions/711779/template-meta-programming-with-char-arrays-as-parameters 3 Template Meta-programming with Char Arrays as Parameters. Daniel Jennings 2009-04-02T21:59:19Z 2009-10-22T17:21:36Z <p>I'm playing around with TMP in GCC 4.3.2's half-implementation of C++0x, and I was wondering if there was a way to somehow do the following:</p> <pre><code>template &lt;char x, char... c&gt; struct mystruct { ... }; int main () { mystruct&lt;"asdf"&gt;::go(); } </code></pre> <p>It obviously won't let me do it just like that, and I thought I'd get lucky by using user-defined literals to transform the "asdf" string during compile-time, but GCC 4.3 doesn't support user-defined literals... </p> <p>Any suggestions? I'd prefer to not do 'a','s','d','f', since this severely hampers my plans for this project.</p> http://stackoverflow.com/questions/844241/why-are-c0x-rvalue-reference-not-the-default 4 Why are C++0x rvalue reference not the default? Zifre 2009-05-09T22:46:38Z 2009-10-21T14:38:06Z <p>One of the cool new features of the upcoming C++ standard, C++0x, are "rvalue references." An rvalue reference is similar to an lvalue (normal) reference, except that it can be bound to a temporary value (normally, a temporary can only be bound to a <code>const</code> reference):</p> <pre><code>void FunctionWithLValueRef(int&amp; a) {...} void FunctionWithRValueRef(int&amp;&amp; a) {...} int main() { FunctionWithLValueRef(5); // error, 5 is a temporary FunctionWithRValueRef(5); // okay } </code></pre> <p>So, why did they invent a whole new type, instead of just removing the restrictions on normal references to allow them to be bound to temporaries?</p> http://stackoverflow.com/questions/1282295/what-exactly-is-nullptr-in-c0x 7 What exactly is nullptr in C++0x? AraK 2009-08-15T16:47:32Z 2009-10-19T20:56:25Z <p>Most of <code>C++</code> programmers are waiting for <code>C++0x</code>. An interesting feature and a confusing one (at least for me) is the new <code>nullptr</code>.</p> <p>Well, no need anymore for the nasty macro <code>NULL</code>.</p> <pre><code>int* x = nullptr; myclass* obj = nullptr; </code></pre> <p>Still, I am not getting how <code>nullptr</code> works. For example, <a href="http://en.wikipedia.org/wiki/C%2B%2B0x" rel="nofollow">Wikipedia article</a> says:</p> <blockquote> <p>C++0x aims to correct this by introducing a new <strong>keyword</strong> to serve as a distinguished null pointer constant: nullptr. It will be of <strong>type nullptr_t</strong>, which is implicitly convertible and comparable to any pointer type or pointer-to-member type. It is not implicitly convertible or comparable to integral types.</p> </blockquote> <p>How is it a keyword and an instance of a type?</p> <p>Also, do you have another example (beside the Wikipedia one) where <code>nullptr</code> is superior to good old <code>0</code>?</p> http://stackoverflow.com/questions/1583791/c0x-constexpr-and-endianness 8 C++0x constexpr and endianness Charles Salvia 2009-10-18T02:01:58Z 2009-10-18T21:26:20Z <p>A common question that comes up from time to time in the world of C++ programming is compile-time determination of endianness. Usually this is done with barely portable #ifdefs. But does the C++0x constexpr keyword along with template specialization offer us a better solution to this?</p> <p>Would it be legal C++0x to do something like:</p> <pre><code>constexpr bool little_endian() { const static unsigned num = 0xAABBCCDD; return reinterpret_cast&lt;const unsigned char*&gt; (&amp;num)[0] == 0xDD; } </code></pre> <p>And then specialize a template for both endian types:</p> <pre><code>template &lt;bool LittleEndian&gt; struct Foo { // .... specialization for little endian }; template &lt;&gt; struct Foo&lt;false&gt; { // .... specialization for big endian }; </code></pre> <p>And then do:</p> <pre><code>Foo&lt;little_endian()&gt;::do_something(); </code></pre> http://stackoverflow.com/questions/687490/c0x-how-do-i-expand-a-tuple-into-variadic-template-function-arguments 2 C++0x, How do I expand a tuple into variadic template function arguments? Gustaf 2009-03-26T20:43:34Z 2009-10-10T05:13:01Z <p>Consider the case of a templated function with variadic template arguments:</p> <pre><code>template&lt;typename Tret, typename... T&gt; Tret func(const T&amp;... t); </code></pre> <p>Now, I have a tuple t of values. How do I call func() using the tuple values as arguments? I've read about the bind() function object, with call() function, and also the apply() function in different some now-obsolete documents. The GNU GCC 4.4 implementation seems to have a call() function in the bind() class, but there is very little documentation on the subject.</p> <p>Some people suggest hand-written recursive hacks, but the true value of variadic template arguments is to be able to use them in cases like above.</p> <p>Does anyone have a solution to is, or hint on where to read about it?</p> http://stackoverflow.com/questions/1533725/is-it-bad-form-to-call-the-default-assignment-operator-from-the-copy-constructor 3 Is it bad form to call the default assignment operator from the copy constructor? Marc 2009-10-07T19:37:36Z 2009-10-08T17:14:02Z <p>Consider a class of which copies need to be made. The vast majority of the data elements in the copy must strictly reflect the original, however <em>there are select few elements whose state is not to be preserved and need to be reinitialized</em>.</p> <p>Is it bad form to call a default assignment operator from the copy constructor?</p> <p>The default assignment operator will behave well with Plain Old Data( int,double,char,short) as well user defined classes per their assignment operators. Pointers would need to be treated separately.</p> <p>One drawback is that this method renders the assignment operator crippled since the extra reinitialization is not performed. It is also not possible to disable the use of the assignment operator thus opening up the option of the user to create a broken class by using the incomplete default assignment operator <code>A obj1,obj2; obj2=obj1; /* Could result is an incorrectly initialized obj2 */</code> .</p> <p>It would be good to relax the requirement that to <code>a(orig.a),b(orig.b)...</code> in addition to <code>a(0),b(0) ...</code> must be written. Needing to write all of the initialization twice creates two places for errors and if new variables (say <code>double x,y,z</code>) were to be added to the class, initialization code would need to correctly added in at least 2 places instead of 1.</p> <p><strong>Is there a better way?</strong></p> <p><strong>Is there be a better way in C++0x?</strong></p> <pre><code>class A { public: A(): a(0),b(0),c(0),d(0) A(const A &amp; orig){ *this = orig; /* &lt;----- is this "bad"? */ c = int(); } public: int a,b,c,d; }; A X; X.a = 123; X.b = 456; X.c = 789; X.d = 987; A Y(X); printf("X: %d %d %d %d\n",X.a,X.b,X.c,X.d); printf("Y: %d %d %d %d\n",Y.a,Y.b,Y.c,Y.d); </code></pre> <p>Output:</p> <pre><code>X: 123 456 789 987 Y: 123 456 0 987 </code></pre> <p>Alternative Copy Constructor:</p> <pre><code>A(const A &amp; orig):a(orig.a),b(orig.b),c(0),d(orig.d){} /* &lt;-- is this "better"? */ </code></pre> http://stackoverflow.com/questions/1527680/determining-maximum-possible-alignment-in-c 7 Determining maximum possible alignment in C++ jalf 2009-10-06T19:44:06Z 2009-10-06T20:00:03Z <p>Is there any <em>portable</em> way to determine what the maximum possible alignment for <em>any</em> type is?</p> <p>For example on x86, SSE instructions require 16-byte alignment, but as far as I'm aware, no instructions require more than that, so any type can be safely stored into a 16-byte aligned buffer. </p> <p>I need to create a buffer (such as a char array) where I can write objects of arbitrary types, and so I need to be able to rely on the beginning of the buffer to be aligned.</p> <p>If all else fails, I know that allocating a char array with <code>new</code> is guaranteed to have maximum alignment, but with the TR1/C++0x templates <code>alignment_of</code> and <code>aligned_storage</code>, I am wondering if it would be possible to create the buffer in-place in my buffer class, rather than requiring the extra pointer indirection of a dynamically allocated array.</p> <p>Ideas?</p> <p>I realize there are plenty of options for determining the max alignment for a bounded set of types: A union, or just <code>alignment_of</code> from TR1, but my problem is that the set of types is unbounded. I don't know in advance which objects must be stored into the buffer.</p> http://stackoverflow.com/questions/1519368/c-hastrivialx-type-traits 4 C++ : has_trivial_X type traits Charles Salvia 2009-10-05T10:49:02Z 2009-10-05T11:26:27Z <p>The boost library, and it seems the upcoming C++0x standard, define various type trait templates to differentiate between objects which have trivial constructors, copy constructors, assignment, or destructors, versus objects which don't. One of the most significant uses of this is to optimize algorithms for certain types, e.g. by using memcpy.</p> <p>But, I don't understand the real practical difference between all the various has_trivial_X templates. The C++ standard only defines two broad categories of types that concern us here: POD and non-POD. A type is non-POD if it has a defined constructor, copy constructor, assignment operator, or destructor. In other words, anything that's not a built-in type, or a C-struct of built-in types, is not a POD. </p> <p>So what's the point of differentiating between, for example, has_trivial_assign and has_trivial_constructor? If an object has a non-trivial assignment operator OR a non-trivial constructor it's not a POD. So under what circumstances would it be useful to know that an object has a trivial assignment operator, but a non-trivial constructor?</p> <p>In other words, why not define a single type-trait template, <code>is_pod&lt;T&gt;</code>, and be done with it?</p> http://stackoverflow.com/questions/1511532/variable-length-template-arguments-list 1 Variable length template arguments list? sold 2009-10-02T20:03:51Z 2009-10-02T22:24:24Z <p>I remember seing something like this being done:</p> <pre><code>template &lt;ListOfTypenames&gt; class X : public ListOfTypenames {}; </code></pre> <p>that is, X inherits from a variable length list of typenames passed as the template arguments. This code is hypothetical, of course.</p> <p>I can't find any reference for this, though. Is it possible? Is it C++0x?</p> http://stackoverflow.com/questions/1155389/c0x-concepts-are-gone-which-other-features-should-go-too 14 C++0X Concepts are gone. Which other features should go too? Neil Butterworth 2009-07-20T19:17:28Z 2009-10-01T07:59:46Z <p>As you may have heard, the last meeting of the C++ standards committee voted to remove concepts from the next C++ standard. Of course, this will affect other features and would seem to throw the standard wide open again. If that is the case, which other features do you think should be stripped away (or added), and why?</p> <p>Links:</p> <p><a href="http://www.informit.com/guides/content.aspx?g=cplusplus&amp;seqNum=441" rel="nofollow">Removal of Concepts</a> -- Danny Kalev (on the decision to remove concepts)</p> <p><a href="http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2009/n2906.pdf" rel="nofollow">Simplifying the use of Concepts</a> -- Bjarne Stroustrup (on the problems with concepts as they look now)</p> <p><a href="http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2009/n2893.pdf" rel="nofollow">The Long Pole Gets Longer</a> -- Martin Tasker (on the impact to the schedule for C++0x if concepts have to be fixed)</p> <p><a href="http://www.ddj.com/cpp/218600111" rel="nofollow">The C++0x "Remove Concepts" Decision</a> - Stroustrup on the issue on Dr. Dobbs</p> <p><a href="http://herbsutter.wordpress.com/2009/07/21/trip-report/" rel="nofollow">Trip Report: Exit Concepts, Final ISO C++ Draft in ~18 Months</a> - Herb Sutter</p> <p><a href="http://lambda-the-ultimate.org/node/3518" rel="nofollow">Concepts Get Voted Off The C++0x Island</a> - Jeremy Siek defending the current Concepts spec</p> <p><a href="http://cpp-next.com/archive/2009/08/what-happened-in-frankfurt/" rel="nofollow">What Happened in Frankfurt?</a> - Doug Gregor on C++Next (on the history and removal of Concepts). </p> http://stackoverflow.com/questions/1495778/lambda-expressions-and-script-parsing-is-this-a-good-design-idea 0 Lambda Expressions and Script Parsing -- Is this a good design idea? ZachS 2009-09-30T01:55:29Z 2009-09-30T05:17:28Z <p>Hello all,</p> <p>I've written a handful of basic 2D shooter games, and they work great, as far as they go. To build upon my programming knowledge, I've decided that I would like to extend my game using a simple scripting language to control some objects. The purpose is more about the general process of design of writing a script parser / executer than the actual control of random objects.</p> <p>So, my current line of thought is to make use of a container of lambda expressions (probably a map). As the parser reads each line, it will determine the type of expression. Then, once it has decided the type of instruction and discovered whatever values it has to work with, it will then open the map to the kind of expression and pass it any values it needs to work.</p> <p>A more-or-less pseudo code example would be like this:</p> <pre><code>//We have determined somehow or another that this is an assignment operator someContainerOfFunctions["assignment"](whatever_variable_we_want); </code></pre> <p>So, what do you guys think of a design like this?</p>