samedi 7 mai 2016

Exist in C++ or D an idiom to decouple classes without have to use dynamic dispatch?

I am a true lover of performance, but I am aware about the importance of execute automated tests too (until better formal verification methods become mainstream).

The drawback is that when you try to design for testability you start to introduce interfaces to represent your dependencies. As you know, interfaces make your invocations dynamic dispatched over that dependency and reduce the optimization opportunities at compile-time.

Does exist a better way to unit test classes without take the dynamic dispatch cost at production. If need, I would can to afford that cost for the unit testing execution but not for the production release.

Im am interested in D and C++ solutions.

Aucun commentaire:

Enregistrer un commentaire