User Gorpik - Stack Overflow most recent 30 from stackoverflow.com 2009-12-18T20:15:35Z http://stackoverflow.com/feeds/user/25824 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1893688/abstract-class-and-using-array-polymorphically/1893852#1893852 0 Answer by Gorpik for abstract class and using array polymorphically Gorpik 2009-12-12T16:07:48Z 2009-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#1831710 2 Answer by Gorpik for vptr - virtual tables Gorpik 2009-12-02T09:23:26Z 2009-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-&gt;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#1797942 0 Answer by Gorpik for virtual derived class of a non-virtual base class Gorpik 2009-11-25T16:01:53Z 2009-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#1797464 1 Answer by Gorpik for virtual function - vtable Gorpik 2009-11-25T14:55:05Z 2009-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#1796600 5 Answer by Gorpik for Member assignment in a const function Gorpik 2009-11-25T12:27:09Z 2009-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#1788592 3 Answer by Gorpik for Should the conditional operator evaluate all arguments? Gorpik 2009-11-24T08:12:33Z 2009-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#1576818 0 Answer by Gorpik for When are member data constructors called? Gorpik 2009-10-16T08:30:11Z 2009-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#1377746 4 Answer by Gorpik for Is there a reason to use enum to define a single constant in C++ code? Gorpik 2009-09-04T07:38:29Z 2009-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#857132 5 Answer by Gorpik for Calling overridden function from the overriding function Gorpik 2009-05-13T10:09:17Z 2009-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#833473 3 Answer by Gorpik for Why is this cast not possible? Gorpik 2009-05-07T08:26:46Z 2009-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&lt; Document> does not inherit from IFolderOrItem&lt; Item>, nor is related with it in any way.</p> http://stackoverflow.com/questions/787906/c-operator-overloading-resolution-ambiguity/787937#787937 0 Answer by Gorpik for C++ operator overloading resolution ambiguity Gorpik 2009-04-25T00:24:50Z 2009-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#771508 10 Answer by Gorpik for C++ Style Convention: Parameter Names within Class Declaration Gorpik 2009-04-21T07:51:00Z 2009-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#743488 1 Answer by Gorpik for How does const correctness help write better programs? Gorpik 2009-04-13T09:50:47Z 2009-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#653361 3 Answer by Gorpik for Should a buffer of bytes be signed or unsigned char buffer? Gorpik 2009-03-17T08:06:58Z 2009-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#521335 3 Answer by Gorpik for Why should I learn C#? Gorpik 2009-02-06T17:44:53Z 2009-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#515001 6 Answer by Gorpik for Suggestion for template book for c++? Gorpik 2009-02-05T08:15:14Z 2009-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#483471 2 Answer by Gorpik for C++: is string.empty() always equivalent to string == ""? Gorpik 2009-01-27T13:54:55Z 2009-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#449802 7 Answer by Gorpik for Why can’t variables be declared in a switch statement? Gorpik 2009-01-16T08:09:45Z 2009-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#449850 3 Answer by Gorpik for when should you use 'friend' in c++ ? Gorpik 2009-01-16T08:33:42Z 2009-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 &lt;&lt; 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#438365 2 Answer by Gorpik for exception hierarchy vs error enumeration Gorpik 2009-01-13T08:50:34Z 2009-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#438339 7 Answer by Gorpik for Can object constructor return a null? Gorpik 2009-01-13T08:39:11Z 2009-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#378011 1 Answer by Gorpik for WinApi C++, How to open a window push down a button? Gorpik 2008-12-18T14:32:39Z 2008-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#302041 0 Answer by Gorpik for Where can i get c++ standard manual? Gorpik 2008-11-19T14:34:49Z 2008-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#301638 1 Answer by Gorpik for c++ enum to unsigned int comparison Gorpik 2008-11-19T11:35:03Z 2008-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#295079 1 Answer by Gorpik for Why in .NET System.Boolean takes 4 byte? Gorpik 2008-11-17T07:55:47Z 2008-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#290004 4 Answer by Gorpik for What Does "Overloaded"/"Overload"/"Overloading" Mean? Gorpik 2008-11-14T13:01:45Z 2008-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-printf 5 Avoid trailing zeroes in printf() Gorpik 2008-11-10T12:42:23Z 2008-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#260028 4 Answer by Gorpik for What's the best signature for clone() in C++? Gorpik 2008-11-03T21:28:33Z 2008-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#249525 3 Answer by Gorpik for Looking for a better way than virtual inheritance in C++ Gorpik 2008-10-30T07:52:35Z 2008-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#221924 3 Answer by Gorpik for What was the strangest coding standard rule that you were forced to follow? Gorpik 2008-10-21T13:42:17Z 2008-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#1824306 Comment by Gorpik on scope of local variables of a function in C Gorpik 2009-12-01T08:54:00Z 2009-12-01T08:54:00Z C++ 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#1765207 Comment by Gorpik on C++: NULL 0x0 or 0? Gorpik 2009-11-26T16:55:12Z 2009-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#1797942 Comment by Gorpik on virtual derived class of a non-virtual base class Gorpik 2009-11-26T16:14:32Z 2009-11-26T16:14:32Z Well, usually you don't want to violate Liskov Substitution Principle. http://stackoverflow.com/questions/1797351/virtual-derived-class-of-a-non-virtual-base-class Comment by Gorpik on virtual derived class of a non-virtual base class Gorpik 2009-11-25T15:53:11Z 2009-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#1797722 Comment by Gorpik on C# Switch Statement refactoring Gorpik 2009-11-25T15:38:35Z 2009-11-25T15:38:35Z You 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#1797464 Comment by Gorpik on virtual function - vtable Gorpik 2009-11-25T15:26:16Z 2009-11-25T15:26:16Z Good point, Bahbar. I was talking about fully constructed objects, but what you say is worth remembering. http://stackoverflow.com/questions/1797287/virtual-function-vtable Comment by Gorpik on virtual function - vtable Gorpik 2009-11-25T14:51:19Z 2009-11-25T14:51:19Z B* test, not *B test ;-) http://stackoverflow.com/questions/1787966/what-is-the-capacity-of-an-empty-vector/1788483#1788483 Comment by Gorpik on what is the capacity of an empty vector? Gorpik 2009-11-24T08:03:45Z 2009-11-24T08:03:45Z All 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#1570761 Comment by Gorpik on Why Access Violation for cout And Stack Overflow for printf Gorpik 2009-10-15T07:34:00Z 2009-10-15T07:34:00Z This 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#1570766 Comment by Gorpik on Why Access Violation for cout And Stack Overflow for printf Gorpik 2009-10-15T07:33:03Z 2009-10-15T07:33:03Z This 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#1465013 Comment by Gorpik on Redirect to getter if the set value of the data property does not meet the condition Gorpik 2009-09-23T10:26:34Z 2009-09-23T10:26:34Z I 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#1453851 Comment by Gorpik on c++ constructers and destructers Gorpik 2009-09-21T11:06:51Z 2009-09-21T11:06:51Z In 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#1453942 Comment by Gorpik on Can I expect float variable values that I set from literal constants to be unchanged after assignment to other variables? Gorpik 2009-09-21T10:54:15Z 2009-09-21T10:54:15Z I'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#1420038 Comment by Gorpik on How to break out of a loop from inside a switch? Gorpik 2009-09-14T07:18:36Z 2009-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#1420046 Comment by Gorpik on How to break out of a loop from inside a switch? Gorpik 2009-09-14T07:07:22Z 2009-09-14T07:07:22Z Throwing an exception is really evil in this case. It means &quot;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&quot;.