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 …
