Tagged Questions

3
votes
3answers
299 views

Long constructor initialization lists

How do you deal with them? I have some classes (usually classes that hold stats etc.) with some 20+ variable members, and the initialization lists end up very long, extending beyond the page width if ...
2
votes
9answers
346 views

Aesthetic question about iterating over a vector in reverse direction

I need to iterate over a vector from the end to the beginnig. The "correct" way is for(std::vector<SomeT>::reverse_iterator rit = v.rbegin(); rit != v.rend(); ++rit) { //do Something } ...
1
vote
6answers
171 views

How to refactor this simple code to avoid code duplication?

I am solving the following simple problem(on one of OnlineJugde sites which is in Russian, so I won't give a link here:). It is easier to state the problem via an example than definition. Input: 10 ...
0
votes
2answers
336 views

What creates the three close/minimize/maximize icons in the top corner of a window? (C++)

I am making a C++/Windows/DirectX program, and when it runs in windowed mode (using d3dpp.Windowed = (!FULLSCREEN); where FULLSCREEN is defined as 0), the three icons that are usually at the top of ...