User Gorpik - Stack Overflowmost recent 30 from stackoverflow.com2009-12-18T20:15:35Zhttp://stackoverflow.com/feeds/user/25824http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1893688/abstract-class-and-using-array-polymorphically/1893852#18938520Answer by Gorpik for abstract class and using array polymorphicallyGorpik2009-12-12T16:07:48Z2009-12-12T16:07:48Z<p>Meyers does not say that you can create the array with no problems; he says that it will be more difficult for you to try to create it. The compiler will complain as soon as you try to initialise it, because you cannot create objects of the base class if it is abstract.</p>
http://stackoverflow.com/questions/1831635/vptr-virtual-tables/1831710#18317102Answer by Gorpik for vptr - virtual tablesGorpik2009-12-02T09:23:26Z2009-12-02T09:35:46Z<p>First of all, virtual tables are not part of the C++ standard. A C++ compiler is free to implement virtual functions any way they feel appropriate. Usually they will use virtual tables, true; but in this case they can implement them any way they feel appropriate.</p>
<p>In most usual implementations, <code>basic</code> does not get <code>derived</code>'s <code>vptr</code>; <code>*basic</code>'s <code>vptr</code> will point to <code>derived</code>'s <code>vtable</code>, which is not really the same. <code>basic</code> is just a pointer, and it is the object pointed that has a <code>vptr</code>. No conversion involved. In any case, <code>vptr</code> is just an internal name for an implementation detail. There is no real class member called <code>vptr</code>.</p>
<p>And you can always call any base-class function just by qualifying it with the class name (in your case, <code>basic->BASE::FOO()</code>).</p>
<p>UPDATE: Just for the record, I have tried creating a class in VC++2008 with a pointer called <code>__vfptr</code> (that is the internal name for the vptr in this compiler), and it works as expected, even though the debugger gets a bit confused by the variable name.</p>
http://stackoverflow.com/questions/1797351/virtual-derived-class-of-a-non-virtual-base-class/1797942#17979420Answer by Gorpik for virtual derived class of a non-virtual base classGorpik2009-11-25T16:01:53Z2009-11-25T16:01:53Z<p>The missing four bytes are, indeed, the vptr of the object; since class A has no vtable, a pointer to A has no vptr.</p>
<p>While it is actually legal deriving a class with virtual methods from another class with none, it is not a good idea. Inheriting from a class with no virtual methods is usually unsound, since that class is not intended to be used polymorphically, which is the main reason behind inheritance. All kinds of bad things can happen if you do it. If you try to use derived class objects through base class pointers, you may well run into the dreaded undefined behaviour (most likely a crash). For instance, trying to delete a base class pointer pointing to a derived class object.</p>
http://stackoverflow.com/questions/1797287/virtual-function-vtable/1797464#17974641Answer by Gorpik for virtual function - vtableGorpik2009-11-25T14:55:05Z2009-11-25T14:55:05Z<p>First, vtable's are implementation specific. In fact, nowhere in the standard is specified that vtable's must exist at all.</p>
<p>Anyway, in most usual cases, you would get one vtable pointer per base class with virtual functions. And, as Yuval explained, nobody "fills" the vtable's when an object is constructed; you have one vtable per class with virtual functions, and objects just have pointers to their correct vtable (or vtable's, in case of multiple inheritance). In your single-inheritance example, <code>test</code> would have a pointer to <code>A</code>'s vtable, assuming that <code>A</code> has at least one virtual function (inherited from <code>B</code> or newly declared in <code>A</code>).</p>
http://stackoverflow.com/questions/1796524/member-assignment-in-a-const-function/1796600#17966005Answer by Gorpik for Member assignment in a const functionGorpik2009-11-25T12:27:09Z2009-11-25T12:27:09Z<p><code>const_cast</code> is nearly always a sign of design failure. In your example, either <code>func()</code> should not be <code>const</code>, or <code>myMember</code> should be <code>mutable</code>.</p>
<p>A caller of <code>func()</code> will expect her object not to change; but this means "not to change in a way she can notice"; this is, not to change its external state. If changing <code>myMember</code> does not change the object external state, that is what the <code>mutable</code> keyword is for; otherwise, <code>func()</code> should not be <code>const</code>, because you would be betraying your function guarantees.</p>
<p>Remember that <code>mutable</code> is not a mechanism to circunvent const-correctness; it is a mechanism to improve it.</p>
http://stackoverflow.com/questions/1788550/should-the-conditional-operator-evaluate-all-arguments/1788592#17885923Answer by Gorpik for Should the conditional operator evaluate all arguments?Gorpik2009-11-24T08:12:33Z2009-11-24T08:12:33Z<p>operator== for floating-point numbers is unsafe (i.e. you cannot trust it, due to rounding issues). In this specific case it is actually safe, so you can ignore the warning, but the compiler will not make such an analysis based on an operator whose results are somewhat unpredictable in the general case.</p>
http://stackoverflow.com/questions/1573806/when-are-member-data-constructors-called/1576818#15768180Answer by Gorpik for When are member data constructors called?Gorpik2009-10-16T08:30:11Z2009-10-16T08:30:11Z<p>Upon entering an object constructor, memory has already been allocated for it. Then the execution order is as follows:</p>
<ol>
<li><p>Base class constructor, if any, as specified in the initialisation list; if not specified, the default constructor is used.</p></li>
<li><p>The constructors for the member data, as specified in the initalisation list (default if not specified), in the order they are declared in the class definition. The order in which they are specified in the initialisation list is irrelevant.</p></li>
<li><p>The constructor body.</p></li>
</ol>
<p>In the example set in the question, the first thing that would be executed upon entering the default constructor of <em>MyMainObj</em> would be the default constructor of <em>MyDataObj</em> to construct the member data <em>obj</em>.</p>
http://stackoverflow.com/questions/1377695/is-there-a-reason-to-use-enum-to-define-a-single-constant-in-c-code/1377746#13777464Answer by Gorpik for Is there a reason to use enum to define a single constant in C++ code?Gorpik2009-09-04T07:38:29Z2009-09-04T07:38:29Z<p>The only reason for using the "enum hack" is that old compilers do not support in-class const definitions, as you say in your question. So, unless you suspect that your code will be ported to an old compiler, you should use const where const is due.</p>
http://stackoverflow.com/questions/857113/calling-overridden-function-from-the-overriding-function/857132#8571325Answer by Gorpik for Calling overridden function from the overriding functionGorpik2009-05-13T10:09:17Z2009-05-13T10:09:17Z<p>This is perfectly good. In fact, the canonical way of performing some operations is calling the base class method, then do whatever (or the other way around). I am thinking of operator= here. Constructors usually work that way, too, even if this is a bit disguised in the initialization list.</p>
http://stackoverflow.com/questions/833447/why-is-this-cast-not-possible/833473#8334733Answer by Gorpik for Why is this cast not possible?Gorpik2009-05-07T08:26:46Z2009-05-07T08:26:46Z<p>The problem is that a cast does not work on the generic arguments, but on the class as a whole. Document inherits from Item, true, but IFolderOrItem< Document> does not inherit from IFolderOrItem< Item>, nor is related with it in any way.</p>
http://stackoverflow.com/questions/787906/c-operator-overloading-resolution-ambiguity/787937#7879370Answer by Gorpik for C++ operator overloading resolution ambiguityGorpik2009-04-25T00:24:50Z2009-04-25T00:24:50Z<p>We'd need to know what is T. It looks like you are instancing an XVector using some type (like unsigned char, for instance) that can be converted into all those types you see, and the compiler does not know which one to choose.</p>
http://stackoverflow.com/questions/771492/c-style-convention-parameter-names-within-class-declaration/771508#77150810Answer by Gorpik for C++ Style Convention: Parameter Names within Class DeclarationGorpik2009-04-21T07:51:00Z2009-04-21T07:51:00Z<p>It is much better to use the parameter names in the declaration, and use good parameter names. This way, they serve as function documentation. Otherwise, you will have to write additional comments in your header, and it is always better to use good parameter/variable names than to use comments.</p>
<p>Exception: when a function must have a certain signature for external reasons, but the parameters are not actually used. In this case, you should not name them in the implementation either.</p>
http://stackoverflow.com/questions/743458/how-does-const-correctness-help-write-better-programs/743488#7434881Answer by Gorpik for How does const correctness help write better programs?Gorpik2009-04-13T09:50:47Z2009-04-13T09:50:47Z<p>Just enlisting the compiler's help when writing code would be enough for me to advocate const-correctness. But today there is an additional advantage: multi-threading code is generally easier to write when you know where can our objects change and where they cannot.</p>
http://stackoverflow.com/questions/653336/should-a-buffer-of-bytes-be-signed-or-unsigned-char-buffer/653361#6533613Answer by Gorpik for Should a buffer of bytes be signed or unsigned char buffer?Gorpik2009-03-17T08:06:58Z2009-03-17T08:06:58Z<p>Do you really care? If you don't, just use the default (char) and don't clutter your code with unimportant matter. Otherwise, future maintainers will be left wondering why did you use signed (or unsigned). Make their life simpler.</p>
http://stackoverflow.com/questions/521305/why-should-i-learn-c/521335#5213353Answer by Gorpik for Why should I learn C#?Gorpik2009-02-06T17:44:53Z2009-02-06T17:44:53Z<p>There is a nice article on the subject <a href="http://genamics.com/developer/csharp_comparative.htm" rel="nofollow">here</a>. And it starts comparing C# and Java.</p>
http://stackoverflow.com/questions/514981/suggestion-for-template-book-for-c/515001#5150016Answer by Gorpik for Suggestion for template book for c++?Gorpik2009-02-05T08:15:14Z2009-02-05T12:08:07Z<p>Maybe a bit mind-boggling if you are just learning, but after the books you mention, you may want to read Andrei Alexandrescu's <a href="http://rads.stackoverflow.com/amzn/click/0201704315" rel="nofollow">Modern C++ Design</a>, if only to learn what can be accomplished through templates. Besides, it discusses many advanced aspects of templates wonderfully.</p>
http://stackoverflow.com/questions/483337/c-is-string-empty-always-equivalent-to-string/483471#4834712Answer by Gorpik for C++: is string.empty() always equivalent to string == ""?Gorpik2009-01-27T13:54:55Z2009-01-27T13:54:55Z<p>str.empty() is never slower, but might be faster than str == "". This depends on implementation. So you should use str.empty() just in case.</p>
<p>This is a bit like using ++i instead of i++ to increase a counter (assuming you do not need the result of the increment operator itself). Your compiler might optimise, but you lose nothing using ++i, and might win something, so you are better off using ++i.</p>
<p>Apart from performance issues, the answer to your question is yes; both expressions are logically equivalent.</p>
http://stackoverflow.com/questions/449736/why-cant-variables-be-declared-in-a-switch-statement/449802#4498027Answer by Gorpik for Why can’t variables be declared in a switch statement?Gorpik2009-01-16T08:09:45Z2009-01-16T11:56:54Z<p>There is a conflict here between language syntax and common sense. For us humans, it looks like this code (taken from 1800 INFORMATION's answer) should work fine:</p>
<pre><code>class A
{
// has some non-trivial constructor and destructor
};
switch (x)
{
case 1:
A a;
break;
default:
// do something else
}
</code></pre>
<p>After all, the curly braces define the scope for <em>a</em>; it is only created if we enter <em>case 1</em>, it is destroyed immediately after leaving the <em>case 1</em> block and it will never be used unless we enter <em>case 1</em>. In fact, the <em>case</em> labels and the <em>break</em> instruction do not separate scopes, so <em>a</em> exists in all the block afterwards, even though it is logically unreachable. And sure, there is no such thing as a <em>case 1</em> block from a syntactic point of view.</p>
<p>If you think of the switch statement as a bunch of (structured) <em>goto</em> instructions in disguise, the scope problem becomes more evident:</p>
<pre><code>{
if (x == 1)
goto 1;
else
goto default;
1:
A a;
goto end;
default:
// do something else
end:
}
</code></pre>
http://stackoverflow.com/questions/17434/when-should-you-use-friend-in-c/449850#4498503Answer by Gorpik for when should you use 'friend' in c++ ?Gorpik2009-01-16T08:33:42Z2009-01-16T08:33:42Z<p>The short answer would be: use <em>friend</em> when it actually <strong>improves</strong> encapsulation. Improving readability and usability (operators << and >> are the canonical example) is also a good reason.</p>
<p>As for examples of improving encapsulation, classes specifically designed to work with the internals of other classes (test classes come to mind) are good candidates.</p>
http://stackoverflow.com/questions/438227/exception-hierarchy-vs-error-enumeration/438365#4383652Answer by Gorpik for exception hierarchy vs error enumerationGorpik2009-01-13T08:50:34Z2009-01-13T08:50:34Z<p>I think you are having the worst of two worlds. A large exception hierarchy is useless because clients are known to be lazy and will end up checking only for the top nodes (maybe only for the hierarchy root). Your enum system does not solve this problem and makes for a more cumbersome exception catching system.</p>
<p>If you really know that lots of different exceptions are needed and catchers will really want the different exceptions (know, not vaguely think), go ahead with the large hierarchy and forget the enums. Otherwise, stick to the small exception hierarchy and offer only the exception classes that will really be interesting for catchers.</p>
http://stackoverflow.com/questions/438325/can-object-constructor-return-a-null/438339#4383397Answer by Gorpik for Can object constructor return a null?Gorpik2009-01-13T08:39:11Z2009-01-13T08:39:11Z<p>In my opinion, the else statement suggests that the previous developers didn't know their C#. A constructor always returns a constructed object or throws an exception.</p>
<p>In the very old times, C++ constructors could return null, so maybe the problem comes from that. This is no longer true in C++ either, at least for the default new operator.</p>
http://stackoverflow.com/questions/377862/winapi-c-how-to-open-a-window-push-down-a-button/378011#3780111Answer by Gorpik for WinApi C++, How to open a window push down a button?Gorpik2008-12-18T14:32:39Z2008-12-18T14:32:39Z<p>It depends completely on the windowing system you are using, or the graphics library. ¿Are you using .NET? ¿MFC?</p>
<p>In any case, your button object will have a way to associate a function to its click event. Just write a function that does what you need (in this case, open the "Edit" window), associate this function to the click event of your button, and you are done.</p>
http://stackoverflow.com/questions/302031/where-can-i-get-c-standard-manual/302041#3020410Answer by Gorpik for Where can i get c++ standard manual?Gorpik2008-11-19T14:34:49Z2008-11-19T14:34:49Z<p>Duplicated <a href="http://stackoverflow.com/questions/204841/where-can-i-look-at-the-c-standard">here</a>.</p>
http://stackoverflow.com/questions/301622/c-enum-to-unsigned-int-comparison/301638#3016381Answer by Gorpik for c++ enum to unsigned int comparisonGorpik2008-11-19T11:35:03Z2008-11-19T11:43:05Z<p>In fact, -1 is implicitly cast to its equivalente unsigned value when it is assigned to nextValue. The equivalente unsigned is the value with the same bitwise representation (which is 111111111111..., this is, the maximum unsigned value).</p>
<p>Later on, in the comparison statement, another implicit cast happens.</p>
<p>So this works right now, but may cause problem in the future. It is never a good idea to mix signed and unsigned values.</p>
http://stackoverflow.com/questions/294905/why-in-net-system-boolean-takes-4-byte/295079#2950791Answer by Gorpik for Why in .NET System.Boolean takes 4 byte?Gorpik2008-11-17T07:55:47Z2008-11-17T07:55:47Z<p>Duplicated <a href="http://stackoverflow.com/questions/204256/why-use-boolean-instead-of-char#204261">here</a>.</p>
http://stackoverflow.com/questions/289997/what-does-overloaded-overload-overloading-mean/290004#2900044Answer by Gorpik for What Does "Overloaded"/"Overload"/"Overloading" Mean?Gorpik2008-11-14T13:01:45Z2008-11-14T13:01:45Z<p>A function is overloaded when it has more than one signature. This means that you can call it with different argument types. For instance, you may have a function for printing a variable on screen, and you can define it for different argument types:</p>
<pre><code>void print(int i);
void print(char i);
void print(UserDefinedType t);
</code></pre>
<p>In this case, the function print() would have three overloads.</p>
http://stackoverflow.com/questions/277772/avoid-trailing-zeroes-in-printf5Avoid trailing zeroes in printf()Gorpik2008-11-10T12:42:23Z2008-11-10T14:49:43Z
<p>I keep stumbling on the format specifiers for the printf() family of functions. What I want is to be able to print a double (or float) with a maximum given number of digits after the decimal point. If I use:</p>
<pre><code>printf("%1.3f", 359.01335);
printf("%1.3f", 359.00999);
</code></pre>
<p>I get</p>
<pre><code>359.013
359.010
</code></pre>
<p>Instead of the desired</p>
<pre><code>359.013
359.01
</code></pre>
<p>Can anybody help me?</p>
http://stackoverflow.com/questions/259853/whats-the-best-signature-for-clone-in-c/260028#2600284Answer by Gorpik for What's the best signature for clone() in C++?Gorpik2008-11-03T21:28:33Z2008-11-03T21:28:33Z<p>I think the function semantics are so clear in this case that there is little space for confusion. So I think you can use the covariant version (the one returning a dumb pointer to the real type) with an easy conscience, and your callers will know that they are getting a new object whose property is transferred to them.</p>
http://stackoverflow.com/questions/249500/looking-for-a-better-way-than-virtual-inheritance-in-c/249525#2495253Answer by Gorpik for Looking for a better way than virtual inheritance in C++Gorpik2008-10-30T07:52:35Z2008-10-30T07:52:35Z<p>We had a very similar problem in a project and we solved it by just NOT deriving ImprovedShape from Shape. If you need Shape functionality in ImprovedShape you can dynamic_cast, knowing that your cast will always work. And the rest is just like in your example.</p>
http://stackoverflow.com/questions/218123/what-was-the-strangest-coding-standard-rule-that-you-were-forced-to-follow/221924#2219243Answer by Gorpik for What was the strangest coding standard rule that you were forced to follow?Gorpik2008-10-21T13:42:17Z2008-10-21T13:42:17Z<p>In C++, we had to write explicitly everything that the compiler is supposed to write for us (default constructor, destructor, copy constructor, copy assignment operator) for every class. Looks like whoever wrote the standards was not very confident on the language.</p>
http://stackoverflow.com/questions/1824245/scope-of-local-variables-of-a-function-in-c/1824306#1824306Comment by Gorpik on scope of local variables of a function in CGorpik2009-12-01T08:54:00Z2009-12-01T08:54:00ZC++ works exactly the same as C in this case. *p value would be undefined.http://stackoverflow.com/questions/1765171/c-null-0x0-or-0/1765207#1765207Comment by Gorpik on C++: NULL 0x0 or 0?Gorpik2009-11-26T16:55:12Z2009-11-26T16:55:12Z+1. Up to very recently I was party to using 0 instead of NULL, but the inclusion of <code>nullptr</code> in C++0x made me change my mind.http://stackoverflow.com/questions/1797351/virtual-derived-class-of-a-non-virtual-base-class/1797942#1797942Comment by Gorpik on virtual derived class of a non-virtual base classGorpik2009-11-26T16:14:32Z2009-11-26T16:14:32ZWell, usually you don't want to violate Liskov Substitution Principle.http://stackoverflow.com/questions/1797351/virtual-derived-class-of-a-non-virtual-base-classComment by Gorpik on virtual derived class of a non-virtual base classGorpik2009-11-25T15:53:11Z2009-11-25T15:53:11Z@AndreyT: Julio's example is actually good. Sooner or later, you should delete any object created with new. Generally speaking, classes with no virtual methods should not be base classes, as they are not meant to be treated polymorphically.http://stackoverflow.com/questions/1797667/c-switch-statement-refactoring/1797722#1797722Comment by Gorpik on C# Switch Statement refactoringGorpik2009-11-25T15:38:35Z2009-11-25T15:38:35ZYou need a 'return false;' at the end; otherwise, not every path will return a value. Alternatively, just move the 'return false;' you have outside the switch.http://stackoverflow.com/questions/1797287/virtual-function-vtable/1797464#1797464Comment by Gorpik on virtual function - vtableGorpik2009-11-25T15:26:16Z2009-11-25T15:26:16ZGood point, Bahbar. I was talking about fully constructed objects, but what you say is worth remembering.http://stackoverflow.com/questions/1797287/virtual-function-vtableComment by Gorpik on virtual function - vtableGorpik2009-11-25T14:51:19Z2009-11-25T14:51:19ZB* test, not *B test ;-)http://stackoverflow.com/questions/1787966/what-is-the-capacity-of-an-empty-vector/1788483#1788483Comment by Gorpik on what is the capacity of an empty vector?Gorpik2009-11-24T08:03:45Z2009-11-24T08:03:45ZAll this is true (more or less), but that was not the question.http://stackoverflow.com/questions/1570737/why-access-violation-for-cout-and-stack-overflow-for-printf/1570761#1570761Comment by Gorpik on Why Access Violation for cout And Stack Overflow for printfGorpik2009-10-15T07:34:00Z2009-10-15T07:34:00ZThis does not answer the question: why Stack Overflow in the second case, but Access Violation in the first.http://stackoverflow.com/questions/1570737/why-access-violation-for-cout-and-stack-overflow-for-printf/1570766#1570766Comment by Gorpik on Why Access Violation for cout And Stack Overflow for printfGorpik2009-10-15T07:33:03Z2009-10-15T07:33:03ZThis does not answer the question: why Stack Overflow in the second case, but Access Violation in the first.http://stackoverflow.com/questions/1464994/redirect-to-getter-if-the-set-value-of-the-data-property-does-not-meet-the-condit/1465013#1465013Comment by Gorpik on Redirect to getter if the set value of the data property does not meet the conditionGorpik2009-09-23T10:26:34Z2009-09-23T10:26:34ZI cannot edit, but the set body should use the field (_Height) instead of the property (Height).http://stackoverflow.com/questions/1453809/c-constructers-and-destructers/1453851#1453851Comment by Gorpik on c++ constructers and destructersGorpik2009-09-21T11:06:51Z2009-09-21T11:06:51ZIn fact, you MUST call the destructor for objects constructed using placement new, but this is not the case here.http://stackoverflow.com/questions/1453895/can-i-expect-float-variable-values-that-i-set-from-literal-constants-to-be-unchan/1453942#1453942Comment by Gorpik on Can I expect float variable values that I set from literal constants to be unchanged after assignment to other variables?Gorpik2009-09-21T10:54:15Z2009-09-21T10:54:15ZI'm afraid you are not answering the question. What Kronikarz wants to know is if, whatever the internal value for 1.5f is, it is always the same.http://stackoverflow.com/questions/1420029/how-to-break-out-of-a-loop-from-inside-a-switch/1420038#1420038Comment by Gorpik on How to break out of a loop from inside a switch?Gorpik2009-09-14T07:18:36Z2009-09-14T07:18:36Z+1. I understand this is more of a theoretical than a practical question; it clearly asks for a jump instruction. Given that break, continue and return are unsuitable, the only answer is the general jump: goto. This said, while (flag) would be a superior construct, but not what the OP asked for.http://stackoverflow.com/questions/1420029/how-to-break-out-of-a-loop-from-inside-a-switch/1420046#1420046Comment by Gorpik on How to break out of a loop from inside a switch?Gorpik2009-09-14T07:07:22Z2009-09-14T07:07:22ZThrowing an exception is really evil in this case. It means "I want to use a goto, but I read somewhere that I should not use them, so I'll go with a subterfuge and pretend to look smart".