Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
#include <vector> template<class T> using vec = std::vector<T>; int main() { std::vector a{2,3}; // vec b{2,3}; // not going to work }
我们还被迫使用宏吗?使用它们有很多缺点......
这是 CTAD 的一个已知问题,已在 C++20 中修复
我们还被迫使用宏吗?
std::vector不,如果您想要 CTAD,我建议您使用
std::vector