2
votes
2answers
207 views
A Strategy against Policy and a Policy against Strategy
When I first discovered the Strategy pattern, I was amazed of the seemingly endless possibilities it offered to me and my programs. I could better encapsulate my models' behaviour and even exchange …
2
votes
C++: Asterisks and Pointers
A good rule of thumb, a lot of people seem to grasp these concepts by: In C++ a lot of semantic meaning is derived by the left-binding of keywords or identifiers.
Take for example:
…
1
vote
Process and Thread
In operating system theory (and AFAIK this applies to operating systems such as Windows, Linux, *BSD, ...) a process is defined as a thread with its own page table, i.e. its own vi …
0
votes
Serialization of objects: no thread state can be involved, right?
You should NOT try to serialize a state that your program has to disk. Because your program will never have full control over its' state unless it is allowed to by the operating sy …
0
votes
Do the concepts in Accelerated C++ Practical Programming by Example still hold up today?
Think about the costs of an hour of a developer's time.
Think about the cost of an hour of CPU time.
And that being said, the performance loss by c …
2
votes
C++’s “placement new”
It is useful if you are building a kernel - where do you place the kernel code you read from disk or the pagetable? You need to know where to jump to.
Or in other, very rare circumstances s …
0
votes
how-to initialize ‘const std::vector<T>’ like a c array
Not sure if I understood you right. I understand your question like this: you want to initialize a vector to a large number of elements. What's wrong with using push_back() on the vector? :-)
…
1
vote
User-defined literals in C++0x, a much needed addition or making C++ even more bloated?
Hmm... I have not thought about this feature yet. Your sample was well thought out and is certainly interesting. C++ is very powerful as it is now, but unfortunately the syntax used in pieces of co …
1
vote
Where do you find templates useful?
The obvious reasons (like preventing code-duplication by operating on different data types) aside, there is this really cool pattern that's called policy based design. I have asked a question about …
2
votes
How to draw a filled envelop like a cone on OpenGL (using GLUT)?
I'm not sure what you mean by "an envelop", but a cone is a primitive that glut has:
glutSolidCone(radius, height, number_of_slices, number_of_stacks)
The easiest …
2
votes
How to draw a filled envelop like a cone on OpenGL (using GLUT)?
Since you reclarified your question to ask for a pie: there's an easy way to draw that too using opengl primitives:
You'd draw a solid sphere using gluSolidSphere(). However, since you only …
2
votes
How to draw a filled envelop like a cone on OpenGL (using GLUT)?
On the edit on colors:
OpenGL is actually a state machine. This means that the current material and/or color position is used when drawing. Since you probably won't be using materials, igno …
2
votes
How to draw a filled envelop like a cone on OpenGL (using GLUT)?
On Edit3: The way I understand your question is that you want to have OpenGL draw borders and anything between them should be filled with colors.
The idea you had was right, but a line stri …
0
votes
Finding non-prime numbers in C++
The idea of the sieve that you try to implement depends on the fact that you start at a prime (2) and cross out multitudes of that number - so all numbers that depend on the prime "2" are ruled out …
2
votes
How to implement big int in C++
A fun challenge. :)
I assume that you want integers of arbitrary length. I suggest the following approach:
Consider the binary nature of the datatype "int". Think about using simple …
