|
|
|
|
|
by clappski
1262 days ago
|
|
C++ has two types of polymorphism; - Templates (compile time), which are generic bits of code that are monomorphized over every combination of template parameters that they're used with. - Virtualization (runtime), classic OO style polymorphism with a VTable (I think this similar to Rust's dyn trait?). |
|