c – 使用constexpr C字符串作为编译器错误消息

问题表明我想做的是

template<const char* Err>
struct broken
{
    template<typename... Args>
    constexpr broken(Args&&...)
    {
        //the sizeof... confuses the compiler as to only emit errors when instantiated
        //this does not work, static_assert only accepts string literals
        static_assert(sizeof...(Args) < 0, Err);
    }
};

我希望的是,只要实例化,就会发出编译器错误消息Err.但是,static_assert只接受字符串文字作为其第二个参数.有没有办法根据constexpr字符串发出编译器错误?

最佳答案 你想要什么不可能以任何形式或形式工作,因为你可以合法地做

extern const char foo[];
template <const char* err> class broken {};
broken<foo> tisbroken;

并且甚至不需要在当前TU(或其他任何地方)中定义foo以进行编译.

当foo未定义时,在foo内部使用err会导致链接器错误,但这样做太迟了.

所以不,你不能使用传递给模板的字符串来打印编译器消息,因为没有字符串.

点赞