Eclipse

15,416
Reputation
1123 views

Registered User

name Eclipse
member for 1 year
seen 1 hour ago
website
location Canada
age 25
12h
revised Is there a sorted collection type in .NET?
deleted 1 characters in body; edited tags
1d
awarded  Mortarboard
Nov
30
awarded  Popular Question
Nov
30
comment c++: Private constructor means no definition of that classes objects inside headers?
Yes, but for compilation times, if you can get away with it, it's better to use forward declarations rather than including the whole class file wherever possible.
Nov
29
awarded  c++
Nov
27
comment User-mode synchronization library for C++
They are user-mode only for uncontested locks. When you get highly-contested locks, you'll get switching to kernel-mode.
Nov
27
awarded  Enlightened
Nov
27
awarded  Popular Question
Nov
27
awarded  Nice Answer
Nov
27
accepted Calculate percent at runtime
Nov
26
answered Calculate percent at runtime
Nov
24
comment Unions in C
No, but the words kind of do, they both have A..pl..es, so the analogy is quite good really.
Nov
17
revised Need help understanding using c++ map as an asscoiative array
deleted 79 characters in body
Nov
16
comment Function returning variable by refrence???
Um, yes, thanks - a little spaced out today. I mentioned non-const, since you can't modify a const reference anyway, but that doesn't much matter in the context of the rest of what I said.
Nov
16
revised Function returning variable by refrence???
deleted 10 characters in body
Nov
16
answered Function returning variable by refrence???
Nov
14
comment P2P or Distributed System implementation
@jldupont: yes it's a duplicate, it sounds like he's responding to eliben's suggestion to not make it wiki.
Nov
12
comment Prime Factorization
Another thing to note, is the ease of leaking an algorithm vs. other conspiracy ideas. If, for example, the military had captured an alien, there's almost no bit of evidence that is going to convince everyone (even physical evidence is going to be doubted). On the other hand, if someone has an algorithm to factor a number in polynomial time, no further proof is needed - it either works, or it doesn't.
Nov
10
accepted In what order are the aggregated classes deleted?
Nov
10
revised In what order are the aggregated classes deleted?
added 388 characters in body
Nov
10
answered In what order are the aggregated classes deleted?
Nov
10
revised In what order are the aggregated classes deleted?
added 36 characters in body
Nov
8
comment Defend zero-based arrays
+1 for half-open intervals - it just makes everything easier.
Nov
5
awarded  Nice Answer
Nov
4
revised Queue + Stack C++
added 328 characters in body
Nov
4
answered Queue + Stack C++
Nov
2
comment Using valid STATIC member function of class that can’t be installed
This satisfies MSVC on my system, but you'll have to wait for someone like litb to elucidate on the standard.
Nov
2
comment Using valid STATIC member function of class that can’t be installed
@Artyom: I think Doug meant that you should supply a dummy typedef where his comment was: template<typename C> struct c_traits { typedef int int_type; };
Oct
30
comment What’s the best way to optimise the build of a project which uses Boost?
Here's a question that has several good answers for speeding up compilation time: stackoverflow.com/questions/373142/…
Oct
30
answered Exception Handling Code Please explain it…
Oct
29
comment Why does derivative trading position always require C++ knowledge?
It's because C++ is so full of quirks, that they assume that if you've mastered it, you must be smart enough for the trading business.
Oct
28
awarded  Nice Answer
Oct
27
awarded  Enlightened
Oct
27
accepted Maximize CPU Usage
Oct
27
revised Maximize CPU Usage
added 498 characters in body
Oct
27
awarded  Nice Answer
Oct
27
revised Maximize CPU Usage
added 421 characters in body
Oct
27
answered Maximize CPU Usage
Oct
27
comment Most daunting error message?
The error only tells you that the two types are incompatible - trying to nail down the fact that one has a const in it and the other doesn't is lots of fun...
Oct
27
answered Use of min and max functions in C++
Oct
26
revised Is this C++ structure initialization trick safe?
deleted 1 characters in body
Oct
26
comment Is this C++ structure initialization trick safe?
But where's the fun in that...
Oct
26
comment How do I allocate variably-sized structures contiguously in memory?
Don't do this unless you want to learn about slicing. You can store pointers to a superclass in an STL container, but if you start trying to store subclasses in a container specialized for the superclass, you'll end up losing any subclass information.
Oct
26
answered Uses of C comma operator
Oct
25
comment What are Code Smells? What is the best way to correct them?
@Graeme - Unless you can get the type at compile time, switching on type is almost certainly going to be slower than a virtual call.
Oct
24
awarded  Populist
Oct
24
awarded  Good Answer
Oct
24
awarded  Nice Answer
Oct
21
revised Size of virtual pointer-C++
added 384 characters in body; added 52 characters in body
Oct
21
revised Size of virtual pointer-C++
added 1017 characters in body; deleted 156 characters in body