Categories
Concepts

C++ Type Erasure

What is type erasure? Type erasure is a term that has a different meaning in C++ than it does in other languages such as Java; in C++, type erasure is a strategy that enables the abstraction of an object to an interface without strictly requiring inheritance between the interface and the object itself. In simpler […]

 881