gpt4 book ai didi

c++ - 防止别名到别名重新定义 C++

转载 作者:太空狗 更新时间:2023-10-29 23:11:07 24 4
gpt4 key购买 nike

我想对用户隐藏库实现并提供带有实现别名的公共(public) API,以减少代码重复。因此,如果我有两个逻辑上不同的 API 结构,但它们的实现相同,则实现将使用别名,如代码片段所示。

// library implementation
namespace impl {
struct A {};
}

// library public API
using A1 = impl::A;
using A2 = impl::A;

// library usage
int main(int argc, char* argv[]) {
using type = A1;
// do some stuff
using type = A2; // prevent this redefinition with reporting warning or error
// do some more stuff
return 0;
}

但是如果用户决定像在代码片段中那样重新定义库公共(public) API 的别名,它可能会导致隐藏的逻辑错误,因为它编译得很好。所以问题是:

如果重新定义的别名被引用到相同的类型,是否可以防止别名到别名的重新定义?

最佳答案

如果您指向同一类型,编译器完全可以接受,恐怕您对此无能为力。

来自 typedef 关键字,在您的情况下,它本质上等同于 using 关键字:

https://en.cppreference.com/w/cpp/language/typedef

Typedef cannot be used to change the meaning of an existing type name (including a typedef-name). Once declared, a typedef-name may only be redeclared to refer to the same type again.

因此,用不同的 type-id 重新声明 typedef-name 是错误的。它不会重新声明具有相同 type-id 的 typedef-name。

关于c++ - 防止别名到别名重新定义 C++,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51839774/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com