Tagged Questions
69
votes
18answers
6k views
Is modern C++ becoming more prevalent?
When I first learned C++ 6-7 years ago, what I learned was basically "C with Classes". std::vector was definitely an advanced topic, something you could learn about if you really wanted to. And there ...
14
votes
10answers
882 views
When/Why ( if ever ) should i think about doing Generic Programming/Meta Programming
IMHO to me OOPS, design patterns make sense and i have been able to apply them practically.
But when it comes to "generic programming /meta programming" of the Modern C++ kind, i am left confused.
...
5
votes
3answers
2k views
Modern C++ Game Programming Examples
To what extent are modern C++ features like:
polymorphism,
STL,
exception safety/handling,
templates with policy-based class design,
smart pointers
new/delete, placement new/delete
used in ...
3
votes
3answers
152 views
Good coding: Pointers rather than references? [closed]
As I've been coding C/C++ for about a year now, I've tried to learn the preferred ways for writing good OO and C++ code. That means, when coding, I always look for the best ways when implementing ...
3
votes
1answer
154 views
CompileTimeChecker from Modern C++ Design not working as expected
I've recently started reading Modern C++ Design by Andrei Alexandrescu. After reading Compile-Time Assertions, I tried the following code:
template<bool> struct CompileTimeChecker
{
...
2
votes
3answers
127 views
Typesafe callback system in modern C++
I'm working at a module that use a callback system that wasn't implemented very nice. The clients are registering with an ID and will be called back with a variable (or two, or none). The problem is ...
1
vote
5answers
262 views
Should I use C(99) booleans ? ( also c++ booleans in c++ ?)
I haven't done much c programming but when I do when I need a false I put 0 when I want true I put 1, (ex. while(1)), in other cases I use things like "while(ptr)" or "if(x)".
Should I try using ...
0
votes
3answers
207 views
C++ Template : Choosing overloaded functions using implicit conversion to template instantiated type!
Consider these overloaded functions,
void fun(Int2Type<1>) {}
void fun(Int2Type<2>) {}
void fun(Int2Type<3>) {}
void fun(Int2Type<4>) {}
I want to call these in this way,
...