Gorpik

1,357
reputation
65 views

Registered User

name Gorpik
member for 1 year
seen Dec 19 at 13:44
website
location Madrid, Spain
age 43
I am a software engineer with quite a lot of experience in C++, both in Unix and Windows platforms. Recently I have started working in C# and .NET.
Dec
19
comment How do I learn C# fast(er), already knowing C, Java, C++, etc.?
I think OP is asking for a good book for people who already know other languages (i.e. something that assumes knowledge of OOP and the like, and goes straight into the meat).
Dec
17
awarded  Civic Duty
Dec
12
answered abstract class and using array polymorphically
Dec
2
accepted virtual function - vtable
Dec
2
revised vptr - virtual tables
Additional experiment
Dec
2
answered vptr - virtual tables
Dec
1
comment scope of local variables of a function in C
C++ works exactly the same as C in this case. *p value would be undefined.
Nov
26
comment C++: NULL 0x0 or 0?
+1. Up to very recently I was party to using 0 instead of NULL, but the inclusion of nullptr in C++0x made me change my mind.
Nov
26
comment virtual derived class of a non-virtual base class
Well, usually you don't want to violate Liskov Substitution Principle.
Nov
25
answered virtual derived class of a non-virtual base class
Nov
25
comment virtual derived class of a non-virtual base class
@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.
Nov
25
comment C# Switch Statement refactoring
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.
Nov
25
comment virtual function - vtable
Good point, Bahbar. I was talking about fully constructed objects, but what you say is worth remembering.
Nov
25
answered virtual function - vtable
Nov
25
comment virtual function - vtable
B* test, not *B test ;-)
Nov
25
answered Member assignment in a const function
Nov
24
answered Should the conditional operator evaluate all arguments?
Nov
24
comment what is the capacity of an empty vector?
All this is true (more or less), but that was not the question.
Oct
16
answered When are member data constructors called?
Oct
8
awarded  Yearling
Sep
23
comment Redirect to getter if the set value of the data property does not meet the condition
I cannot edit, but the set body should use the field (_Height) instead of the property (Height).
Sep
21
comment c++ constructers and destructers
In fact, you MUST call the destructor for objects constructed using placement new, but this is not the case here.
Sep
14
comment How to break out of a loop from inside a switch?
+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.
Sep
14
comment How to break out of a loop from inside a switch?
Throwing 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".
Sep
4
answered Is there a reason to use enum to define a single constant in C++ code?
Sep
2
comment C++: Confusing declaration semantics
I think "You can say that the point-of-declaration for 'x' is not yet reached, so the value of 'x' is indeterminate" is wrong. The point of declaration is already reached, and this is the reason why 'x' is indeterminate, because it is already declared, but not yet initialised.
Aug
25
accepted Where can i get c++ standard manual?
Aug
18
comment How to serialize a pointer into an array of ints?
Good answer, but not portable. And I understand portability is part of the issue.