c++中增加虚类可以减少编译时间?
emmix 2008-10-17 02:03:48 请问下面这段话怎么理解:
An abstract class is purely an interface to the implemnetaions supplied as classes derived from it. This limits the amount of recompilation necessary after a change as well as the aamount of information necessary to compile an average piece of code. By decreasing the couping between a use and an implenenter, abstract classes provide an answer to people complaing about long comile times and also serve libray provides.