Johannes Schaub - litb
|
Registered User
|
I'm a hobby C++ programmer and student. I'm having fun at stackoverflow.com helping others and learning new ways of mastering programming.
I do know a little C#/Java/Bash/Haskell too. My editor of choice is emacs.
|
|
11h |
comment |
Why do C++ streams use char instead of unsigned char? "Using "char" for characters is the standard way to go. Using unsigned char is a hack", how is that? Streams are not only for exchanging basic characters, but also for exchanging binary data (after all, that's what ios_base::binary is for). Would it use unsigned char, we would not have to care about negative char values at all, and always get positive values back. It would seem to be so much nicer. |
|
12h |
comment |
In C macros, should one prefer do { … } while(0,0) over do { … } while(0)? Well in C and C++, 0,0 is not a constant expression, but 0 is. So it's more likely that compilers warn about the latter than the former. But it's also more likely compilers optimize away the latter than the former - so i don't quite see what they win when changing it. |
|
12h |
comment |
Which standard c++ classes cannot be reimplemented in c++? Even offsetof can't be implemented using only C++. It must use compiler builtins on strict compilers. |
|
22h |
awarded | ● Nice Answer |
|
1d |
comment |
mask in enum [C++] Since those constants are used in templates (standard library streams), it doesn't surprise me it works in VC++. He will probably receive an error once calling some function making use of it (maybe rdflags(), fail(), etc...). |
|
1d |
comment |
mask in enum [C++] +1 Yeah, this is probably the more correct one. But none of these two is wrong, i think each of them explain an important part. For instance, this answer doesn't explain why that enumerator isn't defined like the other 5 ones outside the enumeration. |
|
1d |
comment |
mask in enum [C++] +1. More precisely, the range of an enumeration is the range of values that can be stored in the smallest possible bitfield storing all enumerators of the enumeration. In this case, the range is 0 .. 31. |
|
2d |
comment |
Can a nested C++ class inherit its enclosing class? @tkopec, i believe people can still read it sensefully. Since you answered to those comments, they will see you edited the answer. They can also look up the answer's history log and consult earlier versions. I believe that's still better than keeping a wrong answer just to keep making comments directly refer to the current text. Thanks for making it clearer. |
|
2d |
answered | name collision in C++ |
|
2d |
comment |
C++ template member function of template class called from template function I tried the code with comeau online compiler, which accepts it even in the strictest settings: What happened is that it apparently optimized away the local object and didn't care. If you call return a.f<3>(); instead (and make it return something), it will error out too. This looks like a optimizer bug to me. |
|
2d |
comment |
C++ template member function of template class called from template function Future standards (C++0x) still require template here. Some compilers are just not standard's conforming (VC++). |
|
2d |
comment |
Can a nested C++ class inherit its enclosing class? @tkopec, why don't you edit your answer to correct your statement? It would give you your two points back, and me my one. I find it weird, especially since you know it is wrong, now. |
|
Dec 2 |
comment |
Const correctness: const char const * const GetName const (//stuff); The "extra" const means the same as the const before "char". The order where const appears isn't relevant. But you cannot write it twice. Same thing why const const char is invalid... |
|
Dec 2 |
comment |
Const correctness: const char const * const GetName const (//stuff); @dribeas, that's a function. Methods do not exist in C++. |
|
Dec 2 |
comment |
Const correctness: const char const * const GetName const (//stuff); The double const in const char const is valid in C99, but it's not valid in C++. Only one const allowed, but which one you remove doesn't matter. |
|
Dec 2 |
comment |
In C++, is there a difference between “throw” and “throw ex”? @David, i think Adam means a "throw;" while a handler is not being active. That is, outside of any dynamic exception-handler scope it will call std::terminate (it does not need to occur inside the braces of an exception handler, but such an handler has to have been entered before and not left in the current execution sequence). |
|
Dec 2 |
awarded | ● Nice Answer |
|
Dec 2 |
comment |
Is this undefined? Ah wait, 1) is not a violation, because the modification to *ptr uses the value read by *ptr on the other side, the standard explicitly allows that (like in a = a;). So we are left with only 2), and a operator= won't change anything, so i agree with you. My argumentation is flawed anyway, since 1) would assume that in 2) the increment happens after reading ptr on the other side. |
|
Dec 2 |
comment |
Is this undefined? @int3 yes, but if no operator= is involved, you have two violations: 1) read *ptr while assigning to it, and 2) increment ptr while reading it. If operator= is involved, the first problem is gone (since assigning it is happens inside the operator function), but the second problem of course is not gone like you also say. |
|
Dec 2 |
revised |
C++ “THIS” Pointer retag it to be (imho) more appropriate |
|
Dec 2 |
answered | Is there any reason to use this-> |
|
Dec 2 |
comment |
C Unsigned int providing a negative value? But this is how every function call behaves that doesn't use registers. It's not something specific to printf or vararg functions, actually. The stack frame of the current function starts somewhere, and there, or directly below it, will be the incoming arguments, on many architectures anyway. |
|
Dec 2 |
comment |
C++ “THIS” Pointer I believe there are already questions to the effect of "where do we have to use this" |
|
Dec 2 |
comment |
Is this undefined? Except with respect to the assignment side effect itself (which would happen inside the operator= and would thus be protected). But still, the increment of ptr on the left side and the access to ptr on the right side is undefined behavior (since the increment gets its value not from the access on the right side, but operates independently) even for a user defined operator function (as they are function arguments, like you say). |
|
Dec 1 |
accepted | C++ Static member initalization (template fun inside) |
|
Dec 1 |
comment |
How is memory allocated for a static multi-dimensional array? I was thinking of J.5.11 describing that "common extension". I think GCC puts such definitions without initializers in a COMMON section (can be disabled by -fno-common), where at link-time they are merged together, with the object having the largest size being emitted. Not sure tho about these details :) |
|
Dec 1 |
comment |
How is memory allocated for a static multi-dimensional array? Agreed about the strangeness of "with an initializer equal to 0" :) |
|
Dec 1 |
comment |
Strings as template arguments? This is also wrong. A string literal is an array of constant characters, which is perfectly valid as a template argument. But the problem is the literal has internal linkage. |
|
Dec 1 |
comment |
Strings as template arguments? I think you want to do char global_string[] = "String";. The way you have it now has two problems: You are trying to get rid of "const", and you cannot pass the value of that pointer. You have to pass the address of the object. (but for that pointer, it would have type char const** - thus you need to do it another way, for instance using an array - the address-of operator is optional for an array or function here). |
|
Dec 1 |
comment |
How to print an integral template argument at compile time in C++ @t.g. static_assert would stop compilation at will. It would possibly not continue compilation to see other instantiations happen. |
|
Dec 1 |
comment |
How is memory allocated for a static multi-dimensional array? Tho you don't need to put an explicit definition of it completing the type, because if no explicit external definition is provided (and all definitions are tentative), the object is implicitly initialized at the end of the TU with an initializer equal to 0: This will make both the type of the array complete, giving it size of 1, and provide the external definition that's needed. See 6.9.2, and its "Example 2" in paragraph 5 of n1256. The nonstandard extension is that you can provide another definition in another TU (thus having multiple external definitions of the same object, causing UB). |
|
Dec 1 |
comment |
Declaring arrays similar to C style (C++) "default initialization for POD typs is zero-initialization". It's actually value-initialization that delegates to zero-initialization here, not default initialization. (your statement is true for '98, but not for '03 revision of C++) |
|
Dec 1 |
revised |
C++ Static member initalization (template fun inside) fix error in code; added 1 characters in body |
|
Dec 1 |
comment |
C++ Static member initalization (template fun inside) In the segfaulting case, he uses B<int>::getHelper(), which uses B<int>::mInit. |
|
Dec 1 |
answered | C++ Static member initalization (template fun inside) |
|
Dec 1 |
comment |
Is it OK for an abstract base class have non-abstract methods? Indeed, concrete functions in abstract bases are perfectly fine. I'm thinking about sutter's article in this case: gotw.ca/publications/mill18.htm |
|
Nov 30 |
comment |
Is EOF always negative? all members of the basic execution character set, however, are positive. |
|
Nov 30 |
comment |
Can every if-else construct be replaced by an equivalent conditional expression? I think you should put the void thingy around the statement expressions - the cast operation is not distributive among the second and third operands. |
|
Nov 28 |
accepted | Template or abstract base class? |
|
Nov 27 |
awarded | ● Enlightened |
|
Nov 27 |
accepted | Is “const LPVOID” equivalent to “void * const”? |
|
Nov 27 |
awarded | ● Nice Answer |
|
Nov 27 |
revised |
Is “const LPVOID” equivalent to “void * const”? hopefully the edit clarifies |
|
Nov 27 |
revised |
Is “const LPVOID” equivalent to “void * const”? added 508 characters in body |
|
Nov 27 |
answered | Is “const LPVOID” equivalent to “void * const”? |
|
Nov 27 |
answered | Instantiation of function object with different inline function definitions depends on order of linkage |
|
Nov 27 |
accepted | Ternary operator issue |
|
Nov 27 |
revised |
Ternary operator issue add virtual that the questioner added again |
|
Nov 27 |
answered | Ternary operator issue |
|
Nov 23 |
awarded | ● Necromancer |
