4
votes
What are the differences between “generic” types in C++ and Java?
There is a big difference between them. In C++ you don't have to specify a class or an interface for the generic type. That's why you can create truly generic functions and classes, with the caveat …
3
votes
When/Why ( if ever ) should i think about doing Generic Programming/Meta Programming
For advanced templates and techniques, I recommend: Modern C++ Design, by Andrei Alexandrescu
C++ is a rigid …
