User Sumant - Stack Overflowmost recent 30 from stackoverflow.com2009-12-09T10:13:30Zhttp://stackoverflow.com/feeds/user/25014http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1595859/why-is-non-type-template-parameter-expression-handling-inconsistent-across-compil9Why is non-type template parameter expression handling inconsistent across compilers?Sumant2009-10-20T16:29:51Z2009-10-20T17:04:32Z
<p>Here is something I observed across various compilers. It seems there are compiler bugs.</p>
<pre><code>template <int I>
struct X
{ };
int main(void)
{
X<(16 > 1)> a; // Works on vc9, works on g++ 4.1.2, works on Comeau 4.3.10.1
X<(int(16) > 1)> b; // Works on vc9, works on g++ 4.1.2, works on Comeau 4.3.10.1
X<(16 >> 1)> c; // Works on vc9, works on g++ 4.1.2, works on Comeau 4.3.10.1
X<(int(16) >> 1)> d; // Fails on vc9, works on g++ 4.1.2, works on Comeau 4.3.10.1
X<16 > 1> e; // Fails on vc9, works on g++ 4.1.2, fails on Comeau 4.3.10.1
X<int(16) > 1> f; // Fails on vc9, fails on g++ 4.1.2, fails on Comeau 4.3.10.1
X<16 >> 1> g; // Fails on vc9, works on g++ 4.1.2, fails on Comeau 4.3.10.1
X<int(16) >> 1> 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#11943231Answer by Sumant for STL container assignment and const pointers.Sumant2009-07-28T14:05:37Z2009-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-scope3member template specialization and its scopeSumant2009-04-30T18:32:15Z2009-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 <class T>
struct Kind
{
typedef T type;
};
};
struct Derived : public Base
{
/* Not Allowed */
using Base::Kind;
template <>
struct Kind <float>
{
typedef double type;
};
};
int main(void)
{
Base::Kind<float>::type f; // float type desired
Derived::Kind<float>::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-types0C++ standard list and default-constructible typesSumant2009-03-29T21:02:23Z2009-03-29T21:58:29Z
<p>Why is that the single parameter constructor of <code>std::list<T></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<Foo> 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#1721049Answer by Sumant for C++ blogs that you regularly follow?Sumant2008-10-05T15:01:47Z2008-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#16911411Answer by Sumant for Hidden Features of C++?Sumant2008-10-03T22:19:54Z2008-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#1572972Comment by Sumant on Is reinterpreting a member function pointer a 'good idea' ?Sumant2009-11-02T05:11:35Z2009-11-02T05:11:35ZIn typedef, void need to change to RetType http://stackoverflow.com/questions/1595859/why-is-non-type-template-parameter-expression-handling-inconsistent-across-compil/1596017#1596017Comment by Sumant on Why is non-type template parameter expression handling inconsistent across compilers?Sumant2009-10-20T17:14:08Z2009-10-20T17:14:08ZGreat 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-compilComment by Sumant on Why is non-type template parameter expression handling inconsistent across compilers?Sumant2009-10-20T16:52:22Z2009-10-20T16:52:22ZYou are right Marcin, I've seen this inconsistent behavior with overloaded '>' and '>>' operators of user-defined classes.http://stackoverflow.com/questions/808403/member-template-specialization-and-its-scopeComment by Sumant on member template specialization and its scopeSumant2009-04-30T18:36:47Z2009-04-30T18:36:47ZBTW, 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#695379Comment by Sumant on C++ standard list and default-constructible typesSumant2009-03-29T22:10:56Z2009-03-29T22:10:56ZI 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-typesComment by Sumant on C++ standard list and default-constructible typesSumant2009-03-29T21:47:59Z2009-03-29T21:47:59ZMy comment was wrong. I don't want wrong information floating around. http://stackoverflow.com/questions/695372/c-standard-list-and-default-constructible-types/695379#695379Comment by Sumant on C++ standard list and default-constructible typesSumant2009-03-29T21:27:05Z2009-03-29T21:27:05ZI 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-typesComment by Sumant on C++ standard list and default-constructible typesSumant2009-03-29T21:16:21Z2009-03-29T21:16:21Zstd::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?