quamrana

1,657
Reputation
167 views

Registered User

Name quamrana
Member for 1 year
Seen 8 hours ago
Website
Location Nottingham, England
Age 48
I'm a computer programmer working in Nottingham, UK.
9h
revised C++: do you (really) write exception safe code?
corrected spelling
Dec
2
comment Using try vs if in python
@artdanil: So you could wrap that function in one that you write that works like the one that Brandon Corfman is thinking of.
Dec
2
answered How To Remove Characters?
Dec
2
answered Why can I not access a public function of a base class with a pointer of a subClass?
Dec
2
comment Help to use protocol buffers
@tommieb75: Is this correct? Googling for protocol buffers and endian shows a Google Groups conversation that indicates that the software handles this correctly: groups.google.com/group/protobuf/…
Dec
2
comment Const correctness: const char const * const GetName const (//stuff);
@Jerry: You're right. Let me re-phrase: A const method cannot change any public, protected or private members unless they are static or mutable.
Dec
2
comment Const correctness: const char const * const GetName const (//stuff);
A const method cannot change ANY members of the class, nor call any non-const methods.
Dec
2
revised C++ “THIS” Pointer
edited tags
Dec
1
awarded  
Nov
28
answered Prevent a TreeView from firing events in VB6?
Nov
17
revised Virtual tables are undefined
Additional explanation
Nov
17
answered Virtual tables are undefined
Nov
17
comment Interface hierarchy design pattern?
-1: This doesn't seem to be a helpful answer
Nov
17
comment Trouble with Send and Recv
@ej: Please don't use using namespace std; inside header files. This can lead to ambiguities and pain later on. And, yes, you will need to write things like std::string in your headers.
Nov
16
comment How to input special character in cmd?
I assume that ^ also needs escaping. You should add that to your list.
Nov
15
comment Liskov substitution principle - no overriding/virtual methods?
@aip.cd.aish: You are not going to easily solve this if you think about this in terms of implementations. Better to think in terms of what the client expects. There are lots of things that you can do in an implementation that don't violate the expectations of a client, especially if a client has low or no expectations. Easy examples are the GetHasCode() or Shape::GetArea() in which its difficult for the client to detect faults. A Harder example is with Square and Rect where to conform you might have only Rectangle having setHeight and setWidth and only Square having setSize.
Nov
14
comment Liskov substitution principle - no overriding/virtual methods?
@aip.cd.aish: Its not a violation if clients can't tell, and it is a violation if a client has to employ special logic to fix things. Its much better if methods of classes either don't care what their type is, or can safely assume that their type is the one on which the method was originally defined.
Nov
14
comment Liskov substitution principle - no overriding/virtual methods?
I think that queen3 means that many classes will need to override GetHashCode(), but clients that call it (like hash tables) won't know that they're not calling the method defined for Object. Since the contract is still met, then no violation has taken place. However, with the Square/Rectangle example, clients might be able to tell what the class is of the instance they have been passed, or might fail in some way, so a violation has taken place.
Nov
14
revised Liskov substitution principle - no overriding/virtual methods?
edited tags
Nov
14
comment Liskov substitution principle - no overriding/virtual methods?
@Omu - I think you mean that existing and future clients of BASE should keep on referring to BASE. Other parts of the code may very well need to refer to SUB1 and/or SUB2.
Nov
14
answered Liskov substitution principle - no overriding/virtual methods?
Nov
13
comment list management python
@inspectorG4dget: Could 'http://naver.com' appear after a ? in one of the urls?
Nov
13
comment list management python
This is the non-list comprehension version. Does it work by coincidence? Could http://www.naver.com appear later on in a url?
Nov
13
comment “refactor refactor refactor your code.” What does this mean exactly and why do it ?
@staticsan: -1 This may be what you see happening where you work, but it far from best practise and far from the definition.
Nov
13
answered Thread & Queue vs Serial performance
Nov
9
comment Python: return the index of the first element of a list which makes a passed function true
Can you edit your answer to be more like the OP's function that has a list and function as parameters?
Nov
8
comment is it possible pass a function as a parameter in c ?
Duplicate of stackoverflow.com/questions/9410/…
Nov
4
revised How to call overrided methods in a subclass? Potential candidate for refactoring
Added link to wikipedia
Nov
3
answered How to call overrided methods in a subclass? Potential candidate for refactoring
Nov
2
accepted Load an extern C-library into an existing C++-Project (f.e. ffmpeg/libavcodec - step by step)
Oct
30
comment Is it a good practice to always create a .cpp for each .h in a C++ project ?
@MSalters: You mean that a class declaration must be in a header.
Oct
29
revised Is it a good practice to always create a .cpp for each .h in a C++ project ?
Extra info about Header and cpp
Oct
29
answered Is it a good practice to always create a .cpp for each .h in a C++ project ?
Oct
29
comment Design with (pure)virtual C++
@Goz: -1: You start off well enough talking about an abstract base class, but then you blow it by using the preprocessor! You should have either left out the explanation of selecting between Package and Disk, or gone on to using a factory so that very little code knows about either, but only knows about the abstract base class.
Oct
29
revised STL containers on the stack and the heap
edited tags
Oct
28
comment How do I use member functions of constant arrays in C++?
@sbi: You're quite right, but it doesn't hurt, in case the const is ever removed.
Oct
28
answered How do I use member functions of constant arrays in C++?
Oct
28
comment How do I use member functions of constant arrays in C++?
@Grumdrig: You need to start a new sentence: '...vector<string>. If you...'
Oct
28
comment Load an extern C-library into an existing C++-Project (f.e. ffmpeg/libavcodec - step by step)
Have you seen this article on CodeProject: codeproject.com/KB/cpp/…
Oct
28
comment Load an extern C-library into an existing C++-Project (f.e. ffmpeg/libavcodec - step by step)
What platform are you working with?
Oct
28
answered Load an extern C-library into an existing C++-Project (f.e. ffmpeg/libavcodec - step by step)
Oct
27
answered python: sth like parametrized inheritance
Oct
23
comment How does automatic memory allocation actually work in C++?
@Tarquila: The processor has a stack pointer and the compiler can write code to manipulate it directly.
Oct
23
comment How does automatic memory allocation actually work in C++?
@workmad3: 'delete something on the stack' is trivial in this example - however if you had std::string s; then the compiler would be automatically calling a destructor before decrementing a stack pointer.
Oct
17
answered Do Unit Tests target Multiple Cores in Visual Studio?
Oct
7
answered SOLID Liskov Substitution Principle
Oct
1
answered Unit testing code coverage - do you have 100% coverage?
Sep
28
comment Why can’t I invoke python from the command line?
How did you add c:\python26 to your PATH?
Sep
28
comment What could be causing this crash?
Stop downvoting the question! This is a classic C++ problem.
Sep
28
answered What could be causing this crash?