gpt4 book ai didi

c++ - typedef 标准容器?

转载 作者:塔克拉玛干 更新时间:2023-11-03 02:25:38 24 4
gpt4 key购买 nike

我想做

typedef deque type; //error, use of class template requires template argument list
type<int> container_;

但是那个错误阻止了我。我该怎么做?

最佳答案

你不能(直到 C++0x)。但它可以模拟:

template<typename T>
struct ContainerOf
{
typedef std::deque<T> type;
};

用作:

ContainerOf<int>::type container_;

关于c++ - typedef 标准容器?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/562209/

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