xtofl
|
Registered User
|
Love a clean program, where you can tell each functions meaning, each class's responsibilities, each variable's purpose.
Balancing between getting that right, and getting the job done.
|
|
19h |
answered | Calling a Function From a String With the Function’s Name in C++ |
|
19h |
revised |
C++: How to Perform Deep Cloning of Generic Type example code |
|
19h |
answered | C++: How to Perform Deep Cloning of Generic Type |
|
20h |
answered | Software and Bio-Mimicry |
|
1d |
accepted | How to get the first n elements of a std::map |
|
1d |
answered | How to get the first n elements of a std::map |
|
1d |
comment |
printing a UL from an array of images the Short Opening Tag <? is only allowed when short_open_tag is 1. You could check this by printing something after the <h1> block. |
|
1d |
answered | printing a UL from an array of images |
|
1d |
comment |
JS: How to prevent the default action on images in browsers? respect: do learn about browser headackes/hacks! But you'll save yourself a lot of time using the tested knowledge of others about that -i.e. javascript frameworks. |
|
2d |
comment |
Should the conditional operator evaluate all arguments? That's solid reasoning. I can live with that -especially since it proves my gut feeling. |
|
2d |
comment |
Pointer for item in iteration over std::list Or use Target& t = *iter;. |
|
2d |
comment |
I can not get access to pointer to member. Why? Found the bug report: support.microsoft.com/kb/249045. Applies to VC6.0, they say... |
|
2d |
revised |
I can not get access to pointer to member. Why? found the bug report! |
|
2d |
answered | I can not get access to pointer to member. Why? |
|
2d |
comment |
I can not get access to pointer to member. Why? Doesn't the & sign show that it's a _pointer_-to-member, then? |
|
2d |
comment |
I can not get access to pointer to member. Why? However, the compiler doesn't need to know the size, imho. |
|
2d |
comment |
I can not get access to pointer to member. Why? I coincide with the 'bug' theory. I stumbled upon the same problem lately, and found - but don't remember where - that they didn't yet 'fully support' pointer-to-member template class arguments. |
|
Nov 25 |
comment |
Should I support Unicode in passwords? Although the French/Belgian AZERTY keyboard users have a huge problem finding back the 'common' symbols on a QWERTY... Which would then lead to supporting only letters and digits (for the user's sake), if you follow the same rationale. |
|
Nov 25 |
answered | Visual Studio 2008 Debug Window to display timestamp? |
|
Nov 24 |
awarded | ● Good Answer |
|
Nov 24 |
comment |
C++ inheritance problem @fmuecke: you have to treat pointers as pointers, coping properly with ownership issues, and differentiate between 'copying' and 'cloning'. (or shallow vs. deep copy). |
|
Nov 24 |
comment |
compare tchar[] and char[] It's acceptable to convert CHAR to TCHAR. |
|
Nov 24 |
answered | C++ inheritance problem |
|
Nov 24 |
comment |
Should the conditional operator evaluate all arguments? That makes sense. Thanks. |
|
Nov 24 |
comment |
Algorithm for vector problem and dont const short &generation: on a 64bit system, the pointer is 4 times bigger than the argument... |
|
Nov 24 |
comment |
Should the conditional operator evaluate all arguments? Agreed, but the key pain is that we try to treat warnings as errors, and cannot do so with 'false positive' warnings. |
|
Nov 24 |
comment |
Should the conditional operator evaluate all arguments? You're right. It can never be a bug from the C++ standard point of view, since it concerns warnings. However, if this 'flaw' forces me to rewrite perfectly valid code (or surround it with `#pragma`s), from a 'computer program' point of view, it's a bug. |
|
Nov 24 |
asked | Should the conditional operator evaluate all arguments? |
|
Nov 23 |
answered | Parse string containing range of values to min and max variables v2 |
|
Nov 23 |
comment |
Parse string containing range of values to min and max variables v2 Is "-40.3" also to be in there? |
|
Nov 23 |
comment |
Easiest way to make a cyclic iterator? derive from vector? Did you ever try that? I disagree. Aggregate instead! |
|
Nov 21 |
comment |
Why is argc an ‘int’ (rather than an ‘unsigned int’)? That's due to the fact that C++ lacks a proper for_each construct. I ran in the same problem multiple times, but I'm always glad if I can use the std containers with proper iterators. |
|
Nov 20 |
answered | how to allocate a 2D array of pointers in c++ |
|
Nov 19 |
accepted | Declaring functors for comparison ?? |
|
Nov 19 |
answered | Embedded console tools functionality in application |
|
Nov 19 |
comment |
Declaring functors for comparison ?? Note: changing the question like that will make it hard for you to pick the 'right' answer :) |
|
Nov 19 |
answered | Declaring functors for comparison ?? |
|
Nov 19 |
comment |
Declaring functors for comparison ?? Your answer is so simple, and so almost correct... You should create an object as comparator. |
|
Nov 19 |
comment |
Declaring functors for comparison ?? @Fox: funny, Joy asked the same thing when reading my answer :) |
|
Nov 19 |
comment |
Declaring functors for comparison ?? I meant something like bool compareByX( const GE& a, const GE& b ){ return a.x < b.x; }. What you asked is called a functor. |
|
Nov 19 |
answered | Declaring functors for comparison ?? |
|
Nov 19 |
comment |
Declaring functors for comparison ?? By the way, what are you trying to achieve? |
|
Nov 19 |
comment |
Declaring functors for comparison ?? @Mr.Gando: Indeed: &Entity::compareByX() is literally: 'the address of the result of a call to compareByX`... But you can only call compareByX on an object since it's a member function. Two mistakes: you need to make the function static, and you don't need to call it, but give sort it's address, like sort( .... , &Entity::compareByX );.
If you're making the function static, there is no need either to create a class for it - just make it a free function. |
|
Nov 19 |
comment |
Declaring functors for comparison ?? @Joy: EntityComp will not result in an object, neither in a function. EntityComp() will result in a temporary functor object, passed to the sort function. You may as well construct the EntityComp upfront, like EntityComp e; sort( .... e );. |
|
Nov 19 |
comment |
Declaring functors for comparison ?? Did you mix up Entity and GameEntity classes? |
|
Nov 19 |
answered | Declaring functors for comparison ?? |
|
Nov 19 |
answered | bad_alloc exception when trying to print the values |
|
Nov 19 |
answered | How to explain C++ templates to junior developers? |
|
Nov 17 |
comment |
interpret signed as unsigned How is it illegal? What do you mean by 'work'? You can reinterpret back, can't you? |
|
Nov 17 |
comment |
interpret signed as unsigned Good point to distinguish "conversion" from "interpretation"! |
