User Sumant - Stack Overflow most recent 30 from stackoverflow.com 2009-12-09T10:13:30Z http://stackoverflow.com/feeds/user/25014 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1595859/why-is-non-type-template-parameter-expression-handling-inconsistent-across-compil 9 Why is non-type template parameter expression handling inconsistent across compilers? Sumant 2009-10-20T16:29:51Z 2009-10-20T17:04:32Z <p>Here is something I observed across various compilers. It seems there are compiler bugs.</p> <pre><code>template &lt;int I&gt; struct X { }; int main(void) { X&lt;(16 &gt; 1)&gt; a; // Works on vc9, works on g++ 4.1.2, works on Comeau 4.3.10.1 X&lt;(int(16) &gt; 1)&gt; b; // Works on vc9, works on g++ 4.1.2, works on Comeau 4.3.10.1 X&lt;(16 &gt;&gt; 1)&gt; c; // Works on vc9, works on g++ 4.1.2, works on Comeau 4.3.10.1 X&lt;(int(16) &gt;&gt; 1)&gt; d; // Fails on vc9, works on g++ 4.1.2, works on Comeau 4.3.10.1 X&lt;16 &gt; 1&gt; e; // Fails on vc9, works on g++ 4.1.2, fails on Comeau 4.3.10.1 X&lt;int(16) &gt; 1&gt; f; // Fails on vc9, fails on g++ 4.1.2, fails on Comeau 4.3.10.1 X&lt;16 &gt;&gt; 1&gt; g; // Fails on vc9, works on g++ 4.1.2, fails on Comeau 4.3.10.1 X&lt;int(16) &gt;&gt; 1&gt; h; // Fails on vc9, works on g++ 4.1.2, fails on Comeau 4.3.10.1 } </code></pre> <p>Why is that inconsistency? What is allowed/disallowed by the standard? Such behavior is also responsible for syntax error while using BOOST_AUTO on vc9. It appears to me that Comeau is doing the right job by rejecting all the expressions without parenthesis.</p> http://stackoverflow.com/questions/902667/stl-container-assignment-and-const-pointers/1194323#1194323 1 Answer by Sumant for STL container assignment and const pointers. Sumant 2009-07-28T14:05:37Z 2009-07-28T14:05:37Z <p><a href="http://en.wikibooks.org/wiki/More%5FC%2B%2B%5FIdioms/Coercion%5Fby%5FMember%5FTemplate" rel="nofollow">Coercion by Member Template</a> idiom is one possible approach to solve the problem. Essentially, a member template copy-assignment operator is added that allows the template class to participate in the same implicit type conversions (coercion) that are otherwise possible only on the type parameters of the class template. Although the idiom is used in the STL in other places, it is not available in std::vector. </p> http://stackoverflow.com/questions/808403/member-template-specialization-and-its-scope 3 member template specialization and its scope Sumant 2009-04-30T18:32:15Z 2009-04-30T19:46:09Z <p>It appears to me that C++ does not allow member template specialization in any scope other than namespace and global scope (MS VSC++ Error C3412). But to me it makes sense to specialize a base class's primary member template in the derived class because that is what derived classes do - specialize things in the base class. For instance, consider the following example:</p> <pre><code>struct Base { template &lt;class T&gt; struct Kind { typedef T type; }; }; struct Derived : public Base { /* Not Allowed */ using Base::Kind; template &lt;&gt; struct Kind &lt;float&gt; { typedef double type; }; }; int main(void) { Base::Kind&lt;float&gt;::type f; // float type desired Derived::Kind&lt;float&gt;::type i; // double type desired but does not work. } </code></pre> <p>My question is why isn't it allowed?</p> http://stackoverflow.com/questions/695372/c-standard-list-and-default-constructible-types 0 C++ standard list and default-constructible types Sumant 2009-03-29T21:02:23Z 2009-03-29T21:58:29Z <p>Why is that the single parameter constructor of <code>std::list&lt;T&gt;</code> requires <code>T</code> to be a default-constructible type? I mean the following code does not compile. </p> <pre><code>struct Foo { // does not have default constructor. Foo (int i) {} } int main(void) { std::list&lt;Foo&gt; l(10); } </code></pre> <p>It seems possible to use the <a href="http://en.wikibooks.org/wiki/More%5FC%2B%2B%5FIdioms/Generic%5FContainer%5FIdioms" rel="nofollow">construct and destroy idioms</a> as they have already done in the std::vector, albeit with more book-keeping the list class. </p> <p>On a related note, why not have the capacity function in list? You can argue that such a function would pay memory allocation cost up-front and eliminate the overhead later on as you <code>push_back</code> objects. At least it will make the interfaces of two STL sequence containers slightly more consistent.</p> http://stackoverflow.com/questions/151974/c-blogs-that-you-regularly-follow/172104#172104 9 Answer by Sumant for C++ blogs that you regularly follow? Sumant 2008-10-05T15:01:47Z 2008-10-05T15:01:47Z <p>Not a blog but new C++ contents are added frequently: <a href="http://en.wikibooks.org/wiki/More_C++_Idioms" rel="nofollow">More C++ Idioms</a></p> http://stackoverflow.com/questions/75538/hidden-features-of-c/169114#169114 11 Answer by Sumant for Hidden Features of C++? Sumant 2008-10-03T22:19:54Z 2008-10-03T22:19:54Z <p>Hidden features:</p> <ol> <li>Pure virtual functions can have implementation.</li> <li><p>Exception specifications and std::bad_exception. Read more: <a href="http://cpptruths.blogspot.com/2007/05/use-of-stdbadexception.html" rel="nofollow">http://cpptruths.blogspot.com/2007/05/use-of-stdbadexception.html</a></p></li> <li><p>function try blocks</p></li> <li><p>The template keyword in disambiguating typedefs in a class template. If the name of a member template specialization appears after a ., ->, or :: operator, and that name has explicitly qualified template parameters, prefix the member template name with the keyword template. Read more: <a href="http://en.wikibooks.org/wiki/More_C%2B%2B_Idioms/Policy_Clone" rel="nofollow">http://en.wikibooks.org/wiki/More_C%2B%2B_Idioms/Policy_Clone</a></p></li> <li><p>function parameter defaults can be changed at runtime. Read more: <a href="http://cpptruths.blogspot.com/2005/07/changing-c-function-default-arguments.html" rel="nofollow">http://cpptruths.blogspot.com/2005/07/changing-c-function-default-arguments.html</a></p></li> <li><p>A[i] works as good as i[A]</p></li> </ol> http://stackoverflow.com/questions/1572909/is-reinterpreting-a-member-function-pointer-a-good-idea/1572972#1572972 Comment by Sumant on Is reinterpreting a member function pointer a 'good idea' ? Sumant 2009-11-02T05:11:35Z 2009-11-02T05:11:35Z In typedef, void need to change to RetType http://stackoverflow.com/questions/1595859/why-is-non-type-template-parameter-expression-handling-inconsistent-across-compil/1596017#1596017 Comment by Sumant on Why is non-type template parameter expression handling inconsistent across compilers? Sumant 2009-10-20T17:14:08Z 2009-10-20T17:14:08Z Great answer! On Comeau, with C++0x disabled, the result is as described above (6 work, 2 fail). http://stackoverflow.com/questions/1595859/why-is-non-type-template-parameter-expression-handling-inconsistent-across-compil Comment by Sumant on Why is non-type template parameter expression handling inconsistent across compilers? Sumant 2009-10-20T16:52:22Z 2009-10-20T16:52:22Z You are right Marcin, I've seen this inconsistent behavior with overloaded '&gt;' and '&gt;&gt;' operators of user-defined classes. http://stackoverflow.com/questions/808403/member-template-specialization-and-its-scope Comment by Sumant on member template specialization and its scope Sumant 2009-04-30T18:36:47Z 2009-04-30T18:36:47Z BTW, there is a confirmed bug #39906 (<a href="http://gcc.gnu.org/bugzilla/show_bug.cgi?id=39906" rel="nofollow">gcc.gnu.org/bugzilla/show_bug.cgi?id=39906</a>) in g++ that incorrectly accepts similar code. However, Comeau and VC++ do not. http://stackoverflow.com/questions/695372/c-standard-list-and-default-constructible-types/695379#695379 Comment by Sumant on C++ standard list and default-constructible types Sumant 2009-03-29T22:10:56Z 2009-03-29T22:10:56Z I also like the part of Neil's answer after the code snippet. I'll revisit Scott Meyers's book. http://stackoverflow.com/questions/695372/c-standard-list-and-default-constructible-types Comment by Sumant on C++ standard list and default-constructible types Sumant 2009-03-29T21:47:59Z 2009-03-29T21:47:59Z My comment was wrong. I don't want wrong information floating around. http://stackoverflow.com/questions/695372/c-standard-list-and-default-constructible-types/695379#695379 Comment by Sumant on C++ standard list and default-constructible types Sumant 2009-03-29T21:27:05Z 2009-03-29T21:27:05Z I take back my words. vector does have that restriction on its single parameter constructor. Sorry for the confusion. I guess my question is then about why not have reserve and capacity functions in list. http://stackoverflow.com/questions/695372/c-standard-list-and-default-constructible-types Comment by Sumant on C++ standard list and default-constructible types Sumant 2009-03-29T21:16:21Z 2009-03-29T21:16:21Z std::vector does not have such a restriction. My question is why not use the same techniques (create/destroy idioms) in the std::list as well?