Virtual functions and templates in C++ - can they be replaced with other (existing in C++) opertaion
- by Narek
For example concept of Templates in C++ are for comfort as compiler generates some additional code, for your class or for your function, isn't it? So we could live without template by doing some additional (manual work).
What about virtual functions???
Are there any situations where both of them are irreplaceable?