(With type erasure, I mean hiding some or all of the type information regarding a class, somewhat like Boost.Any.)
I want to get a hold of type erasure techniques, while also sharing those, which I know of. My hope is kinda to find some crazy technique that somebody thought of in his/her darkest hour. :)
The first and most obvious, and commonly taken approach, that I know, are virtual functions. Just hide the implementation of your class inside an interface based class hierarchy. Many Boost libraries do this, for example Boost.Any does this to hide your type and Boost.Shared_ptr does this to hide the (de)allocation mechanic.
Then there is the option with function pointers to templated functions, while holding the actual object in a void* pointer, like Boost.Function does to hide the real type of the functor.
For now, because both examples are rather lengthy, I'll link to Ideone with class and example code to both implementations. If there is a wish to just include the source in this question, please leave a comment saying so. :) The code can be found here. (The examples are by no means complete or actually safe-to-use at all. They shall just demonstrate the type erasure technique.)
So, for my actual question:
What other type erasure techniques do you know of? Please provide them, if possible, with an example code, use cases, your experience with them and maybe links for further reading. That would be really great and thanks in advance for all answers!
Edit
(Since I wasn't sure wether to add this as an answer, or just edit the question, I'll just do the safer one.)
Another nice technique to hide the actual type of something without virtual functions or void* fiddling, is the one GMan employs here, with relevance to my question on how exactly this works.
shared_ptrdoesn't reflect this, it will always be the same,shared_ptr<int>for example, unlike standard container. – Xeo Mar 27 '11 at 16:12As(s) function wouldn't be implemented that way. Like I said, by no means safe-to-use! :) – Xeo Mar 27 '11 at 16:23