本文介绍了如何检查,如果类是抽象的,在编译时?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
通过抽象类,我的意思是至少有一个纯虚方法的类。如果检查显示该类不为抽象,则我希望编译失败。
By an abstract class I mean the class with at least one pure virtual method. I want the compilation to fail, if the check shows that the class is not abstract.
是否可能?
推荐答案
使用。
#include <type_traits>
static_assert(std::is_abstract<T>(), "T ought to be abstract.");
查看。
这篇关于如何检查,如果类是抽象的,在编译时?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!