User Johannes Schaub - litb - Stack Overflowmost recent 30 from stackoverflow.com2009-12-15T22:49:32Zhttp://stackoverflow.com/feeds/user/34509http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1909825/error-with-the-declaration-of-enum/1909863#19098638Answer by Johannes Schaub - litb for error with the declaration of enumJohannes Schaub - litb2009-12-15T19:42:06Z2009-12-15T19:42:06Z<p>In C, there are two (actually more, but i keep it at this) kind of namespaces: Ordinary identifiers, and tag identifiers. A struct, union or enum declaration introduces a tag identifier:</p>
<pre><code>enum boolean { true, false };
enum boolean bl = false;
</code></pre>
<p>The namespace from which the identifier is chosen is specified by the syntax around. Here, it is prepended by a <code>enum</code>. If you want to introduce an ordinary identifier, put it inside a typedef declaration</p>
<pre><code>typedef enum { true, false } boolean;
boolean bl = false;
</code></pre>
<p>Ordinary identifiers don't need special syntax. You may declare a tag and ordinary one too, if you like. </p>
http://stackoverflow.com/questions/1897114/c-two-dimensional-arrays-with-pointers/1897161#18971611Answer by Johannes Schaub - litb for C++ two dimensional arrays with pointersJohannes Schaub - litb2009-12-13T17:47:09Z2009-12-13T22:02:50Z<p>If you are passing <code>*matrix</code>, you are actually passing a <code>double[100]</code> (an array of 100 doubles), that happens to be passed as a pointer to its first element. If you advance further than those 100 doubles using <code>i</code> added to that pointer, you advance into the next array of 100 doubles, since the 100 arrays of 100 doubles are stored next to each other. </p>
<p><sub>Background: A multi-dimensional array is an array whose element type is itself an array. An array like <code>double a[100][100];</code> can be declared equivalently as <code>typedef double aT[100]; aT a[100];</code>. If you use an array like a pointer, a temporary pointer is created to the array's first element (which might be an array). The <code>*</code> operator is such an operation, and doing <code>*a</code> creates a pointer of type <code>double(*)[100]</code> (which is a pointer to an array of 100 doubles), and dereferences it. So what you end up with <code>*matrix</code> is a <code>double[100]</code>. Passing it to the <code>negativeVector</code> function will create a pointer to <em>its</em> first element, which is of type <code>double*</code>. </sub></p>
<p>Your pointer parameters point to the start of each of two arrays of 100 doubles each. So you should rewrite the function as </p>
<pre><code>double* negativeVector(double*nVector, double*fromVector, int m, int n){
int position = 0;
double *myNegArray = nVector;
double *myMatrix = fromVector;
for(int i = 0; i < m*n; i++)
if(*(myMatrix + i) < 0){
*(myNegArray + position) = *(myMatrix + i);
position++;
}
return myNegArray;
}
</code></pre>
<p>Notice that since your <code>i</code> iterates beyond the first of the 100 arrays stored in the 2d array, you will formally not be correct with this. But as it happens those arrays must be allocated next to each other, it will work in practice (and in fact, is recommended as a good enough work around for passing multi-dimensional arrays around as pointers to their first scalar element). </p>
http://stackoverflow.com/questions/1887097/variable-length-arrays-in-c/1887178#188717814Answer by Johannes Schaub - litb for Variable length arrays in C++?Johannes Schaub - litb2009-12-11T10:28:54Z2009-12-11T10:28:54Z<p>There recently was a discussion about this kicked off in usenet: <a href="http://groups.google.com/group/comp.std.c++/browse%5Fthread/thread/2bfe25800d4961e8/9545494bbb336dfa" rel="nofollow">Why no VLAs in C++0x</a>. </p>
<p>I agree with those people that seem to agree that having to create a potential large array on the stack, which usually has only little space available, isn't good. The argument is, if you know the size beforehand, you can aswell use a static array. And if you don't know the size beforehand, you will write unsafe code. </p>
<p>VLAs could provide a small benefit of being able to create small arrays without wasting space or calling constructors for not used elements, but they will introduce rather large changes to the type system (you need to be able to specify types depending on runtime values - this does not yet exist in current C++, except for <code>new</code> operator type-specifiers, but they are treated specially, so that the runtime-ness doesn't escape the scope of the <code>new</code> operator).</p>
<p>You can use <code>std::vector</code>, but it is not quite the same, as it uses dynamic memory, and making it use ones own stack-allocator isn't exactly easy (alignment is an issue, too). It also doesn't solve the same problem, because a vector is a resizable container, whereas VLAs are fixed-size. The <a href="http://www.open-std.org/jtc1/sc22/wg21/docs/papers/2008/n2648.html" rel="nofollow">C++ Dynamic Array</a> proposal is intended to introduce a library based solution, as alternative to a language based VLA. However, it's not going to be part of C++0x, as far as i know.</p>
http://stackoverflow.com/questions/20787/when-to-use-stl-bitsets-instead-of-separate-variables/300994#3009942Answer by Johannes Schaub - litb for When to use STL bitsets instead of separate variables?Johannes Schaub - litb2008-11-19T04:32:19Z2009-12-10T20:00:53Z<p>std::bitset will give you extra points when you need to serialize / deserialize it. You can just write it to a stream or read from a stream with it. But certainly, the separate bools are going to be faster. They are optimized for this kind of use after all, while a bitset is optimized for space, and has still function calls involved. It will never be faster than separate bools. </p>
<h3>Bitset</h3>
<ul>
<li>Very space efficient</li>
<li>Less efficient due to bit fiddling</li>
<li>Provides serialize / de-serialize with <code>op<<</code> and <code>op>></code></li>
<li>All bits packed together: You will have the flags at one place. </li>
</ul>
<h3>Separate bools</h3>
<ul>
<li>Very fast</li>
<li>Bools are not packed together. They will be members somewhere.</li>
</ul>
<p>Decide on the facts. I, personally, would use <code>std::bitset</code> for some not-performance critical, and would use bools if I either have only a few bools (and thus it's quite overview-able), or if I need the extra performance. </p>
http://stackoverflow.com/questions/1877687/c-template-gotchas/1877738#18777384Answer by Johannes Schaub - litb for C++ template gotchasJohannes Schaub - litb2009-12-09T23:38:49Z2009-12-09T23:38:49Z<p>This one got me upset back then:</p>
<pre><code>#include <vector>
using std::vector;
struct foo {
template<typename U>
void vector();
};
int main() {
foo f;
f.vector<int>(); // ambiguous!
}
</code></pre>
<p>The last line in main is ambiguous, because the compiler not only looks up <code>vector</code> within <code>foo</code>, but also as an unqualified name starting from within <code>main</code>. So it finds both <code>std::vector</code> and <code>foo::vector</code>. To fix this, you have to write </p>
<pre><code>f.foo::vector<int>();
</code></pre>
<p>GCC does not care about that, and accepts the above code by doing the intuitive thing (calling the member), other compilers do better and warn like comeau:</p>
<pre><code>"ComeauTest.c", line 13: warning: ambiguous class member reference -- function
template "foo::vector" (declared at line 8) used in preference to
class template "std::vector" (declared at line 163 of
"stl_vector.h")
f.vector<int>(); // ambiguous!
</code></pre>
http://stackoverflow.com/questions/1875296/problem-with-class-template-specialisations/1875369#18753697Answer by Johannes Schaub - litb for Problem with class template specialisationsJohannes Schaub - litb2009-12-09T17:09:39Z2009-12-09T17:09:39Z<p>You haven't shown the class definition enclosing these function-declarations. But i assume it's some class where these templates are declared in. You have to define the specializations outside:</p>
<pre><code>struct SomeClass {
template<typename T> T getValue(const_iterator key)const
{
try{return boost::lexical_cast<T>(key->second);}
catch(boost::bad_lexical_cast &e)
{
throw TypeParseError<T>(name, key->first, e.what());
}
}
template<typename T> T getValue(const std::string &key)const
{
iterator i = find(key);
if(i == end())throw KeyNotFound(name,key);
else return getValue(i);
}
};
template<> inline std::string SomeClass::getValue<std::string>(const_iterator key)const {
return key->second;
}
template<> inline std::string SomeClass::getValue<std::string>(const std::string &key)const {
const_iterator i = find(key);
if(i == end())throw KeyNotFound(name,key);
else return i->second;
}
</code></pre>
<p>Remember that since you have defined them outside, they are not inline implicitly, so you either have to make them inline explicitly, or move them into a <code>cpp</code> file (not a header), and forward-declare the specializations in the header like this:</p>
<pre><code>template<> inline std::string SomeClass::getValue<std::string>(const_iterator key)const;
template<> inline std::string SomeClass::getValue<std::string>(const std::string &key)const;
</code></pre>
<p>If you omit the forward-declaration, the compiler has no way to know whether to instantiate the functions or to use the explicit specializations. The forward declaration tells it. </p>
http://stackoverflow.com/questions/1847822/name-collision-in-c/1848418#18484182Answer by Johannes Schaub - litb for name collision in C++Johannes Schaub - litb2009-12-04T17:20:55Z2009-12-04T17:20:55Z<p>Why does your <code>using namespace...</code> not work, while your <code>using ...</code> works? First i want to show you another way to solve it by use of an elaborated type specifier:</p>
<pre><code>int main() {
// ...
static class random r2; // notice "class" here
// ...
}
</code></pre>
<p>That works because "class some_class" is an elaborated type specifier, which will ignore any non-type declarations when looking up the name you specify, so the POSIX function at global scope, which has the same name, will not hide the class name. You tried two other ways to solve it: Using directives and using declarations:</p>
<ul>
<li><p>Then, you tried to stick the type into a namespace, and tried <code>using namespace foo;</code> in main - why did it not work?</p>
<pre><code>namespace foo {
class random
{
public:
random(){ std::cout << "yay!! i am called \n" ;}
};
}
int main() {
using namespace foo;
static random r2; // ambiguity!
return 0 ;
}
</code></pre>
<p>You might wonder why that is so, because you might have thought that the using directive declares the names of <code>foo</code> into the local scope of main - but that's not the case. It's not declaring any name, actually it's just a link to another namespace. It's making a name visible during unqualified name lookup in that case - but the name is made visible as a member of the namespace enclosing both the using-directive and the denoted namespace (<code>foo</code>). That enclosing namespace is the global namespace here. </p>
<p>So what happens is that name lookup will find two declarations of that name - the global POSIX <code>random</code> declaration, and the class declaration within <code>foo</code>. The declarations were not made in the same scope (declarative region), and so the function name doesn't hide the class name as usual (see <code>man stat</code> for an example where it does), but the result is an ambiguity. </p></li>
<li><p>A using <em>declaration</em> however declares one name as a member of the declarative region that it appears in. So, when <code>random</code> is looked up starting from <code>main</code>, it will first find a name that refers to the declaration of <code>random</code> in <code>foo</code>, and this will effectively hide the global POSIX function. So the following works</p>
<pre><code>namespace foo {
class random
{
public:
random(){ std::cout << "yay!! i am called \n" ;}
};
}
int main() {
using foo::random;
static random r2; // works!
return 0 ;
}
</code></pre></li>
</ul>
http://stackoverflow.com/questions/577243/is-there-any-reason-to-use-this/1832411#18324110Answer by Johannes Schaub - litb for Is there any reason to use this->Johannes Schaub - litb2009-12-02T11:42:00Z2009-12-02T11:42:00Z<p>I will use it to call operators implicitly (the return and parameter types below are just dummies for making up the code). </p>
<pre><code>struct F {
void operator[](int);
void operator()();
void f() {
(*this)[n];
(*this)();
}
void g() {
operator[](n);
operator()();
}
};
</code></pre>
<p>I do like the <code>*this</code> syntax more. It has a slightly different semantic, in that using <code>*this</code> will not hide non-member operator functions with the same name as a member, though. </p>
http://stackoverflow.com/questions/1819131/c-static-member-initalization-template-fun-inside/1825872#18258722Answer by Johannes Schaub - litb for C++ Static member initalization (template fun inside)Johannes Schaub - litb2009-12-01T12:22:57Z2009-12-01T12:57:54Z<p>This was discussed on usenet some time ago, while i was trying to answer another question on stackoverflow: <a href="http://groups.google.com/group/comp.lang.c++.moderated/browse%5Fthread/thread/cae9fd5fa38c898e?pli=1" rel="nofollow">Point of Instantiation of Static Data Members</a>. I think it's worth reducing the test-case, and considering each scenario in isolation, so let's look at it more general first:</p>
<p><hr></p>
<pre><code>struct C { C(int n) { printf("%d\n", n); } };
template<int N>
struct A {
static C c;
};
template<int N>
C A<N>::c(N);
A<1> a; // implicit instantiation of A<1> and 2
A<2> b;
</code></pre>
<p>You have the definition of a static data member template. This does not yet create any data members, because of <code>14.7.1</code>: </p>
<blockquote>
<p>"... in particular, the initialization (and any associated side-effects) of a static data member does not occur unless the static data member is itself used in a way that requires the definition of the static data member to exist."</p>
</blockquote>
<p>The definition of something (= entity) is needed when that entity is "used", according to the one definition rule which defines that word (at <code>3.2/2</code>). In particular, if all references are from uninstantiated templates, members of a template or a <code>sizeof</code> expressions or similar things that don't "use" the entity (since they are either not potentially evaluating it, or they just don't exist yet as functions/member functions that are itself used), such a static data member is not instantiated.</p>
<p>An implicit instantiation by <code>14.7.1/7</code> instantiates declarations of static data members - that is to say, it will instantiate any template needed to process that declaration. It won't, however, instantiate definitions - that is to say, initializers are not instantiated and constructors of the type of that static data member are not implicitly defined (marked as used). </p>
<p>That all means, the above code will output nothing yet. Let's cause implicit instantiations of the static data members now. </p>
<pre><code>int main() {
A<1>::c; // reference them
A<2>::c;
}
</code></pre>
<p>This will cause the two static data members to exist, but the question is - how is the order of initialization? On a simple read, one might think that <code>3.6.2/1</code> applies, which says (emphasis by me):</p>
<blockquote>
<p>"Objects with static storage duration defined in namespace scope in the same <em>translation unit</em> and dynamically initialized shall be initialized in the order in which their definition appears in the translation unit."</p>
</blockquote>
<p>Now as said in the usenet post and explained <a href="http://www.open-std.org/jtc1/sc22/wg21/docs/cwg%5Fdefects.html#362" rel="nofollow">in this defect report</a>, these static data members are not defined in a translation unit, but they are instantiated in a <em>instantiation unit</em>, as explained at <code>2.1/1</code>:</p>
<blockquote>
<p>Each translated translation unit is examined to produce a list of required instantiations. [Note: this may include instantiations which have been explicitly requested (14.7.2). ] The definitions of the required templates are located. It is implementation-defined whether the source of the translation units containing these definitions is required to be available. [Note: an implementation could encode sufficient information into the translated translation unit so as to ensure the source is not required here. ] All the required instantiations are performed to produce instantiation units. [Note: these are similar to translated translation units, but contain no references to uninstantiated templates and no template definitions. ] The program is ill-formed if any instantiation fails.</p>
</blockquote>
<p>The Point of Instantiation of such a member also does not really matter, because such a point of instantiation is the context link between an instantiation and its translation units - it defines the declarations that are visible (as specified at <code>14.6.4.1</code>, and each of those point of instantiations must give instantiations the same meaning, as specified in the one definition rule at <code>3.2/5</code>, last bullet). </p>
<p>If we want ordered initialization, we have to arrange so we don't mess with instantiations, but with explicit declarations - this is the area of explicit specializations, as these are not really different to normal declarations. In fact, C++0x changed its wording of <code>3.6.2</code> to the following:</p>
<blockquote>
<p>Dynamic initialization of a non-local object with static storage duration is either ordered or unordered.
Definitions of explicitly specialized class template static data members have ordered initialization. Other
class template static data members (i.e., implicitly or explicitly instantiated specializations) have unordered initialization.</p>
</blockquote>
<p><hr></p>
<p>This means to your code, that:</p>
<ul>
<li><strong><code>[1]</code></strong> and <strong><code>[2]</code></strong> commented: No reference to the static data members exist, so their definitions (and also not their declarations, since there is no need for instantiation of <code>B<int></code>) are not instantiated. No side effect occurs.</li>
<li><strong><code>[1]</code></strong> uncommented: <code>B<int>::getB()</code> is used, which in itself uses <code>B<int>::mB</code>, which requires that static member to exist. The string is initialized prior to main (at any case before that statement, as part of initializing non-local objects). Nothing uses <code>B<int>::mInit</code>, so it's not instantiated, and so no object of <code>B<int>::InitHelper</code> is ever created, which makes its constructor not being used, which in turn will never assign something to <code>B<int>::mB</code>: You will just output an empty string. </li>
<li><strong><code>[1]</code></strong> and <strong><code>[2]</code></strong> uncommented: That this worked for you is luck (or the opposite :)). There is no requirement for a particular order of initialization calls, as explained above. It might work on VC++, fail on GCC and work on clang. We don't know.</li>
<li><strong><code>[1]</code></strong> commented, <strong><code>[2]</code></strong> uncommented: Same problem - again, <em>both</em> static data members are <em>used</em>: <code>B<int>::mInit</code> is used by <code>B<int>::getHelper</code>, and the instantiation of <code>B<int>::mInit</code> will cause its constructor to be instantiated, which will use <code>B<int>::mB</code> - but for your compiler, the order is different in this particular run (unspecified behavior is not required to be consistent among different runs): It initializes <code>B<int>::mInit</code> first, which will operate on a not-yet-constructed string object. </li>
</ul>
http://stackoverflow.com/questions/1808471/is-const-lpvoid-equivalent-to-void-const/1808579#18085797Answer by Johannes Schaub - litb for Is "const LPVOID" equivalent to "void * const"?Johannes Schaub - litb2009-11-27T12:46:50Z2009-11-27T14:10:11Z<p>A typedef-name denotes a type, and not a sequence of tokens (as does a macro). In your case, <code>LPVOID</code> denotes the type also denoted by the token sequence <code>void *</code>. So the diagram looks like</p>
<pre><code>// [...] is the type entity, which we cannot express directly.
LPVOID => [void *]
</code></pre>
<p><strong>Semantically</strong> if you specify the type <code>const LPVOID</code>, you get the following diagram (the brackets around the specifiers mean "the type denoted by the specifier"):</p>
<pre><code>// equivalent (think of "const [int]" and "[int] const"):
const LPVOID <=> LPVOID const => const [void *] <=> [void *] const
=> ["const qualified void-pointer"]
</code></pre>
<p>It's <em>not</em> the same thing as the token sequence <code>const void *</code> - because this one would not denote a const qualified pointer type, but rather a pointer to a const qualified type (the thing pointed to would be const).</p>
<p><strong>Syntactically</strong> a parameter declaration has the following (simplified) form:</p>
<pre><code>declaration-specifiers declarator
</code></pre>
<p>The declaration-specifiers in case of <code>const void *p</code> are <code>const void</code> - so the base-type of <code>*p</code> is a const qualified <code>void</code>, but the pointer itself is not qualified. In case of <code>const LPVOID p</code> however the declaration-specifiers specify a const qualified <code>LPVOID</code> - which means the pointer type itself is qualified, making the parameter declaration identical to <code>void *const p</code>.</p>
http://stackoverflow.com/questions/1807523/instantiation-of-function-object-with-different-inline-function-definitions-depen/1807601#18076013Answer by Johannes Schaub - litb for Instantiation of function object with different inline function definitions depends on order of linkageJohannes Schaub - litb2009-11-27T09:15:15Z2009-11-27T09:15:15Z<p>This is undefined behavior: The your class definitions define the same class type, and so they have to be both the same. For the linker it means it can choose one arbitrary definition as the one that gets emitted. </p>
<p>If you want them to be separated types, you have to nest them into an unnamed namespace. This will cause anything in that namespace to be unique for that translation unit:</p>
<pre><code>namespace NS {
namespace {
struct Obj {
void pong(){ cout << "Y in "__FILE__ << endl; }
bool m;
};
}
Y::Y() { Obj obj; obj.pong(); }
void Y::operator()() { cout << "Y says hello" << endl; }
}
</code></pre>
<blockquote>
<p>So then the question changes to: what happens to the second definition of the inline function during non-optimized compilation? Are they silently ignored?</p>
</blockquote>
<p>Yes, for inline functions (functions defined within class definitions are inline, even if not explicitly declared inline), the same principle applies: They can be defined multiple times in the program, and the program behaves as if it was defined only once. To the linker it means again it can discard all but one definition. Which one it chooses is unspecified. </p>
http://stackoverflow.com/questions/1807516/ternary-operator-issue/1807532#180753211Answer by Johannes Schaub - litb for Ternary operator issueJohannes Schaub - litb2009-11-27T08:55:33Z2009-11-27T08:55:33Z<p>Cast to <code>D&</code> within both branches:</p>
<pre><code>D& d = (rand() %2 == 0 ? static_cast<D&>(c.getD1()) : static_cast<D&>(c.getD2()));
</code></pre>
http://stackoverflow.com/questions/28002/regular-cast-vs-staticcast-vs-dynamiccast/1255015#125501535Answer by Johannes Schaub - litb for Regular cast vs. static_cast vs. dynamic_castJohannes Schaub - litb2009-08-10T13:50:45Z2009-11-23T13:27:08Z<h2>static_cast</h2>
<p><code>static_cast</code> is used for cases where you basically want to reverse an implicit conversion, with a few restrictions and additions. <code>static_cast</code> performs no runtime checks. This should be used if you know that you refer to an object of a specific type, and thus a check would be unnecessary. Example:</p>
<pre><code>void func(void *data) {
// conversion from MyClass* -> void* is implicit
MyClass *c = static_cast<MyClass*>(data);
...
}
int main() { MyClass c; start_thread(&func, &c).join(); }
</code></pre>
<p>In this example, you know that you passed a <code>MyClass</code> object, and thus there is no need for a runtime check to ensure this. </p>
<h2>dynamic_cast</h2>
<p><code>dynamic_cast</code> is used for cases where you don't know what the dynamic type of the object is. You cannot use <code>dynamic_cast</code> if you downcast and the argument type is not polymorphic. An example </p>
<pre><code>if(JumpStm *j = dynamic_cast<JumpStm*>(&stm)) {
...
} else if(ExprStm *e = dynamic_cast<ExprStm*>(&stm)) {
...
}
</code></pre>
<p><code>dynamic_cast</code> returns a null pointer if the object referred to doesn't contain the type casted to as a base class (when you cast to a reference, a <code>bad_cast</code> exception is thrown in that case). </p>
<p>The following code is not valid, because <code>Base</code> is not polymorphic (doesn't contain a virtual function):</p>
<pre><code>struct Base { };
struct Derived : Base { };
int main() {
Derived d; Base *b = &d;
dynamic_cast<Derived*>(b); // invalid
}
</code></pre>
<p>An "up-cast" is always valid with both <code>static_cast</code> and <code>dynamic_cast</code>, and also without any cast, as an "up-cast" is an implicit conversion.</p>
<h2>Regular Cast</h2>
<p>These casts are also called c-style cast. A c-style cast is basically identical to trying out a range of sequences of C++ casts, and taking the first c++ cast that works, without ever considering <code>dynamic_cast</code>. Needless to say that this is much more powerful as it combines all of <code>const_cast</code>, <code>static_cast</code> and <code>reinterpret_cast</code>, but it's also unsafe because it does not use <code>dynamic_cast</code>. </p>
<p>In addition, C-style casts not only allow you to do this, but also allow you to safely cast to a private base-class, while the "equivalent" <code>static_cast</code> sequence would give you a compile time error for that. </p>
<p>Some people prefer c-style casts because of their brevity. I use them for numeric casts only, and use the appropriate C++ casts when user defined types are involved, as they provide stricter checking. </p>
http://stackoverflow.com/questions/1772119/c-the-most-useful-user-made-c-macros-in-gcc-also-c99/1773009#17730092Answer by Johannes Schaub - litb for C - the most useful user-made C-macros (in GCC, also C99) ?Johannes Schaub - litb2009-11-20T20:22:23Z2009-11-20T20:30:47Z<p>for-each loop in C99:</p>
<pre><code>#define foreach(item, array) \
for(int keep=1, \
count=0,\
size=sizeof (array)/sizeof *(array); \
count != size; \
keep=1, count++) \
for(item = (array)+count; keep; keep = !keep)
int main() {
int a[] = { 1, 2, 3 };
int sum = 0;
foreach(int const* c, a)
sum += *c;
printf("sum = %d\n", sum);
// multi-dim array
int a1[][2] = { { 1, 2 }, { 3, 4 } };
foreach(int (*c1)[2], a1)
foreach(int *c2, *c1)
printf("c2 = %d\n", *c2);
}
</code></pre>
http://stackoverflow.com/questions/1772838/invalid-initialization-of-non-const-reference-of-type-int-from-a-temporary-of/1772885#17728851Answer by Johannes Schaub - litb for invalid initialization of non-const reference of type ‘int&' from a temporary of type 'MyClass<int>::iterator*'Johannes Schaub - litb2009-11-20T19:58:10Z2009-11-20T19:58:10Z<p>The issue can be demonstrated by the following snippet</p>
<pre><code>struct A {
int a;
A *get() { return this - a; }
};
int main() { A a = { 0 }; assert(&a == a.get()); }
</code></pre>
<p>Replace line 412 by the following</p>
<pre><code>return this->p->data; // "this->" is optional
</code></pre>
http://stackoverflow.com/questions/1770427/code-golf-what-is-the-shortest-program-that-compiles-and-crashes/1771485#177148554Answer by Johannes Schaub - litb for Code-Golf: What is the shortest program that compiles and crashes?Johannes Schaub - litb2009-11-20T16:06:02Z2009-11-20T16:06:02Z<p>Crash with <code>0</code> characters:</p>
<pre><code>$ > golf.c
$ gcc -Wl,--defsym=main=0 golf.c
$ ./a.out
Segmentation fault
</code></pre>
http://stackoverflow.com/questions/1771117/why-doesnt-c-reimplement-c-standard-functions-with-c-elements-style/1771361#17713614Answer by Johannes Schaub - litb for Why doesn't C++ reimplement C standard functions with C++ elements/style?Johannes Schaub - litb2009-11-20T15:47:05Z2009-11-20T15:47:05Z<p>Even in C, using <code>atoi</code> isn't a good thing to do for converting user input. It doesn't provide error checking at all. Providing a C++ version of it wouldn't be all that useful - considering that it wouldn't throw and do anything, you can just pass <code>.c_str()</code> to it and use it. </p>
<p>Instead you should use <code>strtol</code> in C code, which <em>does</em> do error checking. In C++03, you can use stringstreams to do the same, but their use is error-prone: What exactly do you need to check for? <code>.bad()</code>, <code>.fail()</code>, or <code>.eof()</code>? How do you eat up remaining whitespace? What about formatting flags? Such questions shouldn't bother the average user, that just want to convert his string. <code>boost::lexical_cast</code> does do a good job, but incidentally, C++0x adds utility functions to facilitate fast and safe conversions, through C++ wrappers that can throw if conversion failed:</p>
<blockquote>
<pre><code>int stoi(const string& str, size_t *idx = 0, int base = 10);
long stol(const string& str, size_t *idx = 0, int base = 10);
unsigned long stoul(const string& str, size_t *idx = 0, int base = 10);
long long stoll(const string& str, size_t *idx = 0, int base = 10);
unsigned long long stoull(const string& str, size_t *idx = 0, int base = 10);
</code></pre>
<p><strong>Effects</strong>: the first two functions call <code>strtol(str.c_str(), ptr, base)</code>, and the last three functions
call <code>strtoul(str.c_str(), ptr, base)</code>, <code>strtoll(str.c_str(), ptr, base)</code>, and <code>strtoull(str.c_str(), ptr, base)</code>, respectively. Each function returns the converted result, if any. The argument <code>ptr</code> designates a pointer to an object internal to the function that is used to determine what to store at <code>*idx</code>. If the function does not throw an exception and <code>idx != 0</code>, the function stores in <code>*idx</code> the index of the first unconverted element of str.</p>
<p><strong>Returns</strong>: the converted result.</p>
<p><strong>Throws</strong>: <code>invalid_argument</code> if <code>strtol</code>, <code>strtoul</code>, <code>strtoll</code>, or <code>strtoull</code> reports that no conversion could be performed. Throws <code>out_of_range</code> if the converted value is outside the range of representable values for the return type.</p>
</blockquote>
http://stackoverflow.com/questions/1762049/templated-operator-overload-c/1762137#17621378Answer by Johannes Schaub - litb for templated operator() overload C++Johannes Schaub - litb2009-11-19T09:53:43Z2009-11-19T10:21:31Z<p>The member template is a dependent name, because its semantics depend on the type of <code>f_type</code>. That means you should put "template" before its name (to disambiguate the use of the "less-than" token), similar to how you should put <code>typename</code> before dependent qualified names:</p>
<pre><code>template<size_t i, class f_type>
void call_with_i(f_type f) {
f.template operator()<i>();
// f.template foo<i>();
}
</code></pre>
<p>As a workaround, you may use a helper type:</p>
<pre><code>template<size_t N> struct size_t_ { }; // or boost::mpl::int_
template<size_t i, class f_type>
void call_with_i(f_type f) {
f(size_t_<i>());
}
</code></pre>
<p>Now, you could define your <code>operator()</code> as follows:</p>
<pre><code>template<size_t i> void operator()(size_t_<i>) const {
// i was deduced automatically by the function argument.
}
</code></pre>
<p>This comes handy for templated constructors, for which you cannot do <code>f_type()<i>()</code> or something. They will <em>have</em> to be deducible in that case. </p>
http://stackoverflow.com/questions/1755000/passing-around-fixed-size-arrays-in-c/1755017#175501711Answer by Johannes Schaub - litb for Passing around fixed-size arrays in C++?Johannes Schaub - litb2009-11-18T10:23:19Z2009-11-18T10:23:19Z<p>Put the array into a struct. <code>boost::array</code> is such a package:</p>
<pre><code>boost::array<int, 3> array_func() {
boost::array<int, 3> a = {{ 1, 1, 1 }};
return a;
}
int main() {
boost::array<int, 3> b = array_func();
}
</code></pre>
<p>Quick and dirty:</p>
<pre><code>template<typename E, size_t S>
struct my_array {
E data[S];
};
</code></pre>
<p>Notice how you can use aggregate initialization syntax. </p>
http://stackoverflow.com/questions/822059/sfinae-with-invalid-function-type-or-array-type-parameters12SFINAE with invalid function-type or array-type parameters?Johannes Schaub - litb2009-05-04T21:05:17Z2009-11-14T07:00:24Z
<p>Please consider this code:</p>
<pre><code>template<typename T>
char (&f(T[1]))[1];
template<typename T>
char (&f(...))[2];
int main() { char c[sizeof(f<void()>(0)) == 2]; }
</code></pre>
<p>I expected it doing SFINAE and chosing the second overload, since substitution of <code>T</code> into <code>T[1]</code> yields</p>
<pre><code> void [1]()
</code></pre>
<p>Which is an invalid type, of course. Adjustment of parameter types (array->pointer) is done after substituting template parameters into function parameters and checking for valid resulting types like 14.8.2 [temp.deduct] describes.</p>
<p>But both comeau and GCC fail to compile the above. Both with different diagnostics. </p>
<p>Comeau says:</p>
<blockquote>
<p>"ComeauTest.c", line 2: error: array of functions is not allowed <code>char (&f(T[1]))[1];</code></p>
</blockquote>
<p>GCC says (version <code>4.3.3</code>):</p>
<blockquote>
<p>error: ISO C++ forbids zero-size array <code>c</code></p>
</blockquote>
<p>Meaning, GCC does not fail to substitute, but it chooses the first overload of <code>f</code>, returning a <code>sizeof</code> of 1, instead of failing to substitute it up front like Comeau.</p>
<p>What compiler is right and is my code valid at all? Please refer to or quote the proper Standard section in your answer. Thanks!</p>
<p><hr /></p>
<p><strong>Update</strong>: The Standard itself contains such an example in the list at <code>14.8.2/2</code>. I dunno why i overlooked it first:</p>
<pre><code>template <class T> int f(T[5]);
int I = f<int>(0);
int j = f<void>(0); // invalid array
</code></pre>
<p>While the example is only informative, it shows the intention of all those mysterious paragraphs and seems to show the code above should work and reject the first overload.</p>
http://stackoverflow.com/questions/1723977/accessing-protected-member-functions-from-test-code-in-c/1725107#17251073Answer by Johannes Schaub - litb for Accessing protected member functions from test code in C++Johannes Schaub - litb2009-11-12T20:24:23Z2009-11-12T20:33:13Z<p>There is a way which is completely allowed by the Standard. </p>
<pre><code>//in Foo.h
class Foo
{
protected:
void DoSomething(Data data);
};
//in Blah.h
class Blah
{
public:
Foo foo;
Data data;
};
//in test code...
struct FooExposer : Foo {
using Foo::DoSomething;
};
Blah blah;
(blah.foo.*&FooExposer::DoSomething)(blah.data);
</code></pre>
<p>Read the <a href="http://stackoverflow.com/questions/75538/hidden-features-of-c/1065606#1065606">Hidden features of C++</a> entry for an explanation. </p>
<p><hr></p>
<p>You may write a macro for your convenience (the parenthesis are there so that you can use this macro also for types that have a comma, like <code>vector<pair<A, B>></code>):</p>
<pre><code>#define ACCESS(A, M, N) struct N : get_a1<void A>::type { using get_a1<void A>::type::M; }
template<typename T> struct get_a1;
template<typename R, typename A1> struct get_a1<R(A1)> { typedef A1 type; };
</code></pre>
<p>The matter now becomes</p>
<pre><code>ACCESS((Foo), DoSomething, GetDoSomething);
Blah blah;
(blah.foo.*&GetDoSomething::DoSomething)(blah.data);
</code></pre>
http://stackoverflow.com/questions/1719928/why-is-this-syntax-invalid-vectorpointer-0/1719952#171995212Answer by Johannes Schaub - litb for Why is this syntax invalid? vectorPointer->[0] Johannes Schaub - litb2009-11-12T04:47:58Z2009-11-12T04:47:58Z<p>It's because the language expects a member to appear after <code>-></code>. That's how the language is made up. You can use the function call syntax, if you like</p>
<pre><code>// not really nicer
vecPtr->operator[](0);
</code></pre>
<p>If you have to do this <em>a lot</em> in sequence, using <code>[0]</code> instead of the parentheses can improve readability greatly</p>
<pre><code>vecPtr[0][0]
</code></pre>
<p>Otherwise, for one level, i find <code>(*vecPtr)[0]</code> is perfectly readable to me.</p>
http://stackoverflow.com/questions/1697020/whats-the-difference-between-a-derived-object-and-a-base-object-in-c/1697240#16972402Answer by Johannes Schaub - litb for What's the difference between a derived object and a base object in c++?Johannes Schaub - litb2009-11-08T17:25:19Z2009-11-08T17:25:19Z<p>More theoretically, if you derive one class from another, you have a base class and a derived class. If you create an object of a derived class, you have a derived object. In C++, you can inherit from the same class multiple times. Consider:</p>
<pre><code>struct A { };
struct B : A { };
struct C : A { };
struct D : B, C { };
D d;
</code></pre>
<p>In the <code>d</code> object, you have two <code>A</code> objects within each <code>D</code> objects, which are called "base-class sub-objects". If you try to convert <code>D</code> to <code>A</code>, then the compiler will tell you the conversion is ambiguous, because it doesn't know to <em>which</em> <code>A</code> object you want to convert:</p>
<pre><code>A &a = d; // error: A object in B or A object in C?
</code></pre>
<p>Same goes if you name a non-static member of <code>A</code>: The compiler will tell you about an ambiguity. You can circumvent it in this case by converting to <code>B</code> or <code>C</code> first:</p>
<pre><code>A &a = static_cast<B&>(d); // A object in B
</code></pre>
<p>The object <code>d</code> is called the "most derived object", because it's not a sub-object of another object of class type. To avoid the ambiguity above, you can inherit virtually</p>
<pre><code>struct A { };
struct B : virtual A { };
struct C : virtual A { };
struct D : B, C { };
</code></pre>
<p>Now, there is only <em>one</em> subobject of type <code>A</code>, even though you have two subobject that this one object is contained in: subobject <code>B</code> and sub-object <code>C</code>. Converting a <code>D</code> object to <code>A</code> is now non-ambiguous, because conversion over both the <code>B</code> and the <code>C</code> path will yield the same <code>A</code> sub-object. </p>
<p>Here comes a complication of the above: Theoretically, even without looking at any implementation technique, either or both of the <code>B</code> and <code>C</code> sub-objects are now not contiguous anymore. Both contain the same A object, but both doesn't contain each other either. This means that one or both of those must be "split up" and merely reference the A object of the other, so that both <code>B</code> and <code>C</code> objects can have different addresses. In linear memory, this may look like (let's assume all objecs have size of 1 byte)</p>
<pre><code>C: [1 byte [A: refer to 0xABC [B: 1byte [A: one byte at 0xABC]]]]
[CCCCCCC[ [BBBBBBBBBBCBCBCBCBCBCBCBCBCBCB]]]]
</code></pre>
<p><code>CB</code> is what both the <code>C</code> and the <code>B</code> sub-object contains. Now, as you see, the <code>C</code> sub-object would be split up, and there is no way without, because <code>B</code> is not contained in <code>C</code>, and neither the other way around. The compiler, to access some member using code in a function of <code>C</code>, can't just use an offset, because the code in a function of <code>C</code> doesn't know whether it's contained as a sub-object, or - when it's not abstract - whether it's a most derived object and thus has the <code>A</code> object directly next to it.</p>
http://stackoverflow.com/questions/1687399/can-you-explain-the-following-c-c-statement/1688610#16886102Answer by Johannes Schaub - litb for Can you explain the following C/C++ statement?Johannes Schaub - litb2009-11-06T16:15:53Z2009-11-06T16:15:53Z<p><a href="http://www.xs4all.nl/~weegen/eelis/geordi/" rel="nofollow"><code>Geordi</code></a> is a C++ bot, allowing to train this:</p>
<pre><code><litb> geordi: {} void (*func)(int(*[ ])());
<litb> geordi: -r << ETYPE_DESC(func)
<geordi> lvalue pointer to a function taking a pointer to a pointer to a nullary function
returning an integer and returning nothing
</code></pre>
<p>It can do many useful things, like showing all parameter-declarations (this, in fact, is just matching raw <code>C++</code> grammar rule names):</p>
<pre><code><litb> geordi: show parameter-declarations
<geordi> `int(*[ ])()`.
</code></pre>
<p>Let's do it in the opposite direction:</p>
<pre><code><litb> geordi: {} int func;
<litb> geordi: make func a pointer to function returning void and taking array of pointer to
functions returning int
<litb> geordi: show
<geordi> {} void (* func)(int(*[])());
</code></pre>
<p>It executes anything you give to it, if you ask it. If you are trained but just forgot some of the scary parentheses rules, you may also mix C++ and geordi-style type descriptions:</p>
<pre><code><litb> geordi: make func a (function returning void and taking (int(*)()) []) *
<geordi> {} void (* func)(int(*[])());
</code></pre>
<p>Have fun!</p>
http://stackoverflow.com/questions/1652808/why-does-c-need-arrays-if-it-has-pointers/1681493#16814930Answer by Johannes Schaub - litb for Why does C need arrays if it has pointers?Johannes Schaub - litb2009-11-05T15:57:32Z2009-11-05T15:57:32Z<p><a href="http://cm.bell-labs.com/cm/cs/who/dmr/chist.html" rel="nofollow">Explanation by Dennis Ritchie</a> about C history:</p>
<blockquote>
<p><strong>Embryonic C</strong></p>
<p>NB existed so briefly that no full description of it was written. It supplied the types int and char, arrays of them, and pointers to them, declared in a style typified by</p>
<pre><code>int i, j;
char c, d;
int iarray[10];
int ipointer[];
char carray[10];
char cpointer[];
</code></pre>
<p>The semantics of arrays remained exactly as in B and BCPL: the declarations of iarray and carray create cells dynamically initialized with a value pointing to the first of a sequence of 10 integers and characters respectively. The declarations for ipointer and cpointer omit the size, to assert that no storage should be allocated automatically. Within procedures, the language's interpretation of the pointers was identical to that of the array variables: a pointer declaration created a cell differing from an array declaration only in that the programmer was expected to assign a referent, instead of letting the compiler allocate the space and initialize the cell.</p>
<p>Values stored in the cells bound to array and pointer names were the machine addresses, measured in bytes, of the corresponding storage area. Therefore, indirection through a pointer implied no run-time overhead to scale the pointer from word to byte offset. On the other hand, the machine code for array subscripting and pointer arithmetic now depended on the type of the array or the pointer: to compute iarray[i] or ipointer+i implied scaling the addend i by the size of the object referred to.</p>
<p>These semantics represented an easy transition from B, and I experimented with them for some months. Problems became evident when I tried to extend the type notation, especially to add structured (record) types. Structures, it seemed, should map in an intuitive way onto memory in the machine, but in a structure containing an array, there was no good place to stash the pointer containing the base of the array, nor any convenient way to arrange that it be initialized. For example, the directory entries of early Unix systems might be described in C as</p>
<pre><code>struct {
int inumber;
char name[14];
};
</code></pre>
<p>I wanted the structure not merely to characterize an abstract object but also to describe a collection of bits that might be read from a directory. Where could the compiler hide the pointer to name that the semantics demanded? Even if structures were thought of more abstractly, and the space for pointers could be hidden somehow, how could I handle the technical problem of properly initializing these pointers when allocating a complicated object, perhaps one that specified structures containing arrays containing structures to arbitrary depth?</p>
<p>The solution constituted the crucial jump in the evolutionary chain between typeless BCPL and typed C. It eliminated the materialization of the pointer in storage, and instead caused the creation of the pointer when the array name is mentioned in an expression. The rule, which survives in today's C, is that values of array type are converted, when they appear in expressions, into pointers to the first of the objects making up the array. </p>
</blockquote>
<p>To summarize in my own words - if <code>name</code> above were just a pointer, any of that struct would contain an additional pointer, destroying the perfect mapping of it to an external object (like an directory entry).</p>
http://stackoverflow.com/questions/1679603/why-tr1bind-can-not-be-compiled-if-type-of-argument-is-const-int/1679637#16796372Answer by Johannes Schaub - litb for why tr1::bind can not be compiled if type of argument is "const int"Johannes Schaub - litb2009-11-05T10:26:49Z2009-11-05T10:33:23Z<p>An expression is not only classified by its type, but also by its lvalueness. This one mostly determines whether it's stored somewhere, and it also determines whether it can be bound to non-const references. A non-const rvalue (non-lvalue) cannot be bound to non-const references, so if you do the following, you always fail:</p>
<pre><code>template<typename T>
void f(T&);
int main() { f(10); f((int const)10); }
</code></pre>
<p>The second call may surprise you, but actually cv-qualifiers are dropped from non-class rvalues, and so the cast expression happens to have the type <code>int</code>, still. So the function template's parameter type will be deduced to <code>int&</code> - compilation fails. </p>
<p>Now, pre-C++0x <code>bind</code> does only support non-const references as the type of argument it forwards, so if you give it a const argument it's fine - its templated parameter will make it so it becomes a const reference. But if you give it a non-const argument, and it's an rvalue, it's <em>not</em> fine, because it won't be able to be bound by the reference parameter.</p>
<p>You want to call the bind object with an lvalue - that is, with <code>sc</code> or with it cast to a const lvalue. Notice also that toplevel qualifiers of function parameter types are dropped, and so <code>foo</code> effectively has type <code>void(int, int)</code> - this toplevel cv-dropping happens for all types of parameters. Anyway, the solution is to change the call to </p>
<pre><code>for(int sc = 0; sc < 10; sc+=interval){
func((int const&)sc); // notice &
}
</code></pre>
http://stackoverflow.com/questions/1655996/variables-as-a-parameters-for-templates-in-c/1658236#16582362Answer by Johannes Schaub - litb for Variables as a parameters for templates in C++Johannes Schaub - litb2009-11-01T20:36:20Z2009-11-01T20:36:20Z<p>It's wrong to say flat-out that a template parameter can only be a type or an integer. It can be more than that, including a reference or pointer. But you cannot have it a <code>map</code> as a value parameter. So, <em>even though the preferred way to write your code is to write a functor with an <code>operator()</code>, you can still pass a map as a template argument.</em></p>
<pre><code>template<multimap<string, double> &arr>
void calculate(string key) {
}
multimap<string, double> arr;
int main() {
vector<string> keys;
for_each(keys.begin(), keys.end(), &calculate<arr>);
}
</code></pre>
<p>You should be aware of the consequences:</p>
<ul>
<li>Only non-local variables can be passed and only non-static variables - variables with internal linkage can't be used.</li>
<li>It's very strange, and will confuse most C++ programmers. </li>
</ul>
<p>So to summarize: Don't do it - but it's good to know that you can do it, and i think it's important to say the <em>full</em> truth, even though it may seem confusing at times. </p>
http://stackoverflow.com/questions/1653332/define-for-unsigned-long/1653337#165333710Answer by Johannes Schaub - litb for #define for unsigned longJohannes Schaub - litb2009-10-31T03:45:41Z2009-10-31T03:45:41Z<p>Better use a typedef. The reason your macro may fail is - it might not syntactically valid in some places. Consider:</p>
<pre><code>double x = calc();
ulong v = ulong(x);
</code></pre>
<p>In this case, you get</p>
<pre><code>unsigned long v = unsigned long(x);
</code></pre>
<p>This is not valid, because the cast form used is not compatible with the way you name the type (it has to consist of a simplier form, like a single word). Use a typedef:</p>
<pre><code>typedef unsigned long ulong;
</code></pre>
http://stackoverflow.com/questions/1642763/null-pointer-equivalence-to-int/1642776#16427766Answer by Johannes Schaub - litb for null pointer equivalence to intJohannes Schaub - litb2009-10-29T10:30:27Z2009-10-29T10:35:36Z<p>Yes, that means that <code>castPointer</code> isn't necessarily zero, and the assert may fail. Because while the <em>null pointer constant</em> is zero, the <em>null pointer</em> of some type is not necessarily an address with all bits zero. </p>
<p><code>reinterpret_cast</code> has no special provisions to yield zero when casting a null pointer to int. You can achieve that by using boolean operators, which will initialize the variable with either <code>0</code> or <code>1</code>:</p>
<pre><code>int castPointer = (voidPointer != 0);
</code></pre>
http://stackoverflow.com/questions/1626446/what-is-the-size-of-an-empty-struct-in-c/1626493#162649322Answer by Johannes Schaub - litb for What is the size of an empty struct in C?Johannes Schaub - litb2009-10-26T18:28:25Z2009-10-26T18:34:36Z<p>A struct cannot be empty in C because the syntax forbids it. Furthermore, there is a semantic constraint that makes behavior undefined if a struct has no named member:</p>
<pre><code>struct-or-union-specifier:
struct-or-union identifieropt { struct-declaration-list }
struct-or-union identifier
struct-or-union:
struct
union
struct-declaration-list:
struct-declaration
struct-declaration-list struct-declaration
struct-declaration:
specifier-qualifier-list struct-declarator-list ;
/* type-specifier or qualifier required here! */
specifier-qualifier-list:
type-specifier specifier-qualifier-listopt
type-qualifier specifier-qualifier-listopt
struct-declarator-list:
struct-declarator
struct-declarator-list , struct-declarator
struct-declarator:
declarator
declaratoropt : constant-expression
</code></pre>
<p>If you write</p>
<pre><code>struct identifier { };
</code></pre>
<p>It will give you a diagnostic message, because you violate syntactic rules. If you write</p>
<pre><code>struct identifier { int : 0; };
</code></pre>
<p>Then you have a non-empty struct with no named members, thus making behavior undefined, and not requiring a diagnostic:</p>
<blockquote>
<p>If the struct-declaration-list contains no named members, the behavior is undefined. </p>
</blockquote>
<p>Notice that the following is disallowed because a flexible array member cannot be the first member:</p>
<pre><code>struct identifier { type ident[]; };
</code></pre>
http://stackoverflow.com/questions/1860461/why-is-i-i-1-unspecified-behavior/1860612#1860612Comment by Johannes Schaub - litb on Why is `i = ++i + 1` unspecified behavior?Johannes Schaub - litb2009-12-15T19:38:23Z2009-12-15T19:38:23ZSeriously, i don't know anymore what i believe about this for C99 xD I think it is undefined behavior, or at least very underspecified and not nearly safe to use in ones own code :(. But for C1x and C++0x, the discussion showed the code is not undefined behavior, i think. Have funhttp://stackoverflow.com/questions/1860461/why-is-i-i-1-unspecified-behavior/1860612#1860612Comment by Johannes Schaub - litb on Why is `i = ++i + 1` unspecified behavior?Johannes Schaub - litb2009-12-14T07:07:51Z2009-12-14T07:07:51ZWow there are lots of opinions there. Good question! I will post my opinion to there later today. Have to head to work. Seeya xDhttp://stackoverflow.com/questions/1860461/why-is-i-i-1-unspecified-behavior/1860612#1860612Comment by Johannes Schaub - litb on Why is `i = ++i + 1` unspecified behavior?Johannes Schaub - litb2009-12-14T06:43:59Z2009-12-14T06:43:59Z@Prasoon, value computation and initiation of side effects are two different things (see the accepted answer - it's completely right here). The compiler can completely see that in this one: <code>x = y++</code> x will be assigned <code>y+1</code>, before incrementing y, as it can completely see in the above that <code>i</code> is going to be assigned <code>i+2</code> - and can sequence the assignment together, and overlapping, with the increment of <code>i</code>. This is what makes it UB. My analysis was about C++, anyway, but there is not a difference to behavior in C, i believe.http://stackoverflow.com/questions/1897114/c-two-dimensional-arrays-with-pointers/1897138#1897138Comment by Johannes Schaub - litb on C++ two dimensional arrays with pointersJohannes Schaub - litb2009-12-13T22:05:45Z2009-12-13T22:05:45ZFor the second "replacement declaration", it should look like <code>double (*myMatrix)[100] = (double(*)[100])fromVector;</code> but as you also note the 100 constant is in the way here. So you could use the proposed arithmetic, but it looks like a more complicated way to do just <code>*(myMatrix + i)</code> (there is no need to get row and col first, just to add them together later), as proposed by @partial and myself.http://stackoverflow.com/questions/1897114/c-two-dimensional-arrays-with-pointers/1897154#1897154Comment by Johannes Schaub - litb on C++ two dimensional arrays with pointersJohannes Schaub - litb2009-12-13T21:58:39Z2009-12-13T21:58:39Z@Pavel, well if <code>m</code> and <code>n</code> are 100 respectively (i suspect they are the row and column size?), then this code will index the whole square correctly. http://stackoverflow.com/questions/1897114/c-two-dimensional-arrays-with-pointers/1897138#1897138Comment by Johannes Schaub - litb on C++ two dimensional arrays with pointersJohannes Schaub - litb2009-12-13T21:56:44Z2009-12-13T21:56:44Z"Even though an array is a pointer, 2D array is not a pointer to pointer". It must: If an array is a pointer, a 2d array is a pointer to a pointer (because a 2d array is an array of arrays). The bug in this is that an array is not a pointer: Then, a 2d array also is not a pointer to a pointer. Also, a 2d array <i>can</i> be dereferenced twice - i.e <code>**matrix</code> is entirely possible. http://stackoverflow.com/questions/1860461/why-is-i-i-1-unspecified-behaviorComment by Johannes Schaub - litb on Why is `i = ++i + 1` unspecified behavior?Johannes Schaub - litb2009-12-13T16:33:38Z2009-12-13T16:33:38ZC++ Puzzle: Write a function <code>f</code>, so that <code>int i = 0; f(i, i++);</code> is not undefined behavior. :)http://stackoverflow.com/questions/1860461/why-is-i-i-1-unspecified-behavior/1860612#1860612Comment by Johannes Schaub - litb on Why is `i = ++i + 1` unspecified behavior?Johannes Schaub - litb2009-12-13T15:22:07Z2009-12-13T15:22:07Z[...] permitted by the unspecified ordering of these side effects. This is different to <code>(i++, i++)</code>, because the evaluation order of the two subexpressions is from left to right, and at the sequence point between them, the increment of the previous evaluation shall be complete, and the next increment shall not have yet taken place. This enforces that there is no change of the value of i between two sequence points, which makes <code>(i++, i++)</code> valid.http://stackoverflow.com/questions/1860461/why-is-i-i-1-unspecified-behavior/1860612#1860612Comment by Johannes Schaub - litb on Why is `i = ++i + 1` unspecified behavior?Johannes Schaub - litb2009-12-13T15:15:25Z2009-12-13T15:15:25Z@Prasoon alright let's do an example of a possible order of side effects. <code><a></code> is assignment, and <code><n></code> is an increment. <code>:s:</code> is a sequence point. Then the side effects can be sequenced as follows between sequence points: <code>(i :s: i++<a><n> :s: i) + 1</code>. The value of the scalar <code>i</code> was changed twice between the first and second sequence point here. The order in which the assignment and the increment happens is unspecified, and since between them there is no sequence point, it is not even atomic with respect to each other. This is one allowed ordering [...]http://stackoverflow.com/questions/1896597/lame-operator-redefinition-errorComment by Johannes Schaub - litb on Lame operator redefinition errorJohannes Schaub - litb2009-12-13T14:16:52Z2009-12-13T14:16:52ZSure you included the <code><ostream></code> header? If you just included (directly or indirectly) <code><iosfwd></code> the program might behave that exact way. http://stackoverflow.com/questions/1896597/lame-operator-redefinition-error/1896606#1896606Comment by Johannes Schaub - litb on Lame operator redefinition errorJohannes Schaub - litb2009-12-13T14:13:55Z2009-12-13T14:13:55Z<code>str << cout</code> is perfectly fine if you provide an overload for that. The parameter types are nearly arbitrary. http://stackoverflow.com/questions/1896369/how-to-use-a-class-object-in-c-as-a-function-parameter/1896395#1896395Comment by Johannes Schaub - litb on How to use a class object in C++ as a function parameterJohannes Schaub - litb2009-12-13T13:38:45Z2009-12-13T13:38:45ZIt's not like the class keyword is illegal as he uses it, though. The following is a perfectly valid TU: <code>void f(class foo);</code>. If "foo" is not yet known, it will be introduced there, so it's a forward declaration at an uncommon place though.http://stackoverflow.com/questions/1887097/variable-length-arrays-in-c/1887178#1887178Comment by Johannes Schaub - litb on Variable length arrays in C++?Johannes Schaub - litb2009-12-11T11:03:43Z2009-12-11T11:03:43ZAlso look at Matt Austern's answer in that thread: The language specification of VLAs would probably considerably more complex for C++, because of the stricter type matches in C++ (example: C allows assigning a <code>T(*)[]</code> to a <code>T(*)[N]</code> - in C++ this is not allowed, since C++ does not know about "type compatibility" - it requires exact matches), type parameters, exceptions, con- and destructors and stuffs. I'm not sure whether the benefits of VLAs would really pay off all that work. But then, i have never used VLAs in real life, so i probably don't know good use cases for them. http://stackoverflow.com/questions/1887097/variable-length-arrays-in-c/1887178#1887178Comment by Johannes Schaub - litb on Variable length arrays in C++?Johannes Schaub - litb2009-12-11T11:00:14Z2009-12-11T11:00:14Z@Andreas, agreed about the weakness. But for recursion, it takes a huge number of calls until stack is eaten up, and if that can be the case, people would use iteration. As some people on the usenet thread say, though, this is not an argument against VLAs in all cases, since sometimes you definitely may know an upper bound. But in those cases, from what i see a static array can equally be sufficient, since it would not waste much space anyway (if it <i>would</i>, then you would actually have to ask whether the stack area is large enough again). http://stackoverflow.com/questions/1860461/why-is-i-i-1-unspecified-behavior/1860612#1860612Comment by Johannes Schaub - litb on Why is `i = ++i + 1` unspecified behavior?Johannes Schaub - litb2009-12-10T20:14:39Z2009-12-10T20:14:39ZAlso, notice that merely a sequence point means nothing: The order of evaluations isn't dictated by the form of code. It's dictated by semantic rules. In this case, there is no semantic rule saying when the assignment side effect happens with regard to evaluating both of its operands or subexpressions of those operands.