Search Results

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 …
2
votes

absolute path… confused (ubuntu)

The path is relative to the current working directory, not to the directory your application is under. A simple solution would be to have a SH script that changes the working directory to y …
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 …