gpt4 book ai didi

c++ - 使用模板化参数的 value_type

转载 作者:IT老高 更新时间:2023-10-28 22:24:58 29 4
gpt4 key购买 nike

应该如何使用标准容器的 value_type?
我试着像这样使用它:

#include <vector>

using namespace std;

template <typename T>
class TSContainer {
private:
T container;
public:
void push(T::value_type& item)
{
container.push_back(item);
}
T::value_type pop()
{
T::value_type item = container.pop_front();
return item;
}
};
int main()
{
int i = 1;
TSContainer<vector<int> > tsc;
tsc.push(i);
int v = tsc.pop();
}

但这会导致:

prog.cpp:10: error: ‘T::value_type’ is not a type
prog.cpp:14: error: type ‘T’ is not derived from type ‘TSContainer<T>’
prog.cpp:14: error: expected ‘;’ before ‘pop’
prog.cpp:19: error: expected `;' before ‘}’ token
prog.cpp: In function ‘int main()’:
prog.cpp:25: error: ‘class TSContainer<std::vector<int, std::allocator<int> > >’ has no member named ‘pop’
prog.cpp:25: warning: unused variable ‘v’

我以为这就是::value_type 的用途?

最佳答案

你必须使用 typename:

typename T::value_type pop()

等等。

原因是编译器无法知道 T::value_type 是否是成员变量的类型(没有人阻止您定义类型 struct X { int value_type; }; 并将其传递给模板)。但是,如果没有该函数,则无法解析代码(因为构造的含义会根据某些标识符指定类型或变量而改变,例如 T * p 可能是乘法或指针声明) .因此,规则是所有可能是类型或变量并且没有通过前缀 typename 显式标记为类型的所有内容都被视为变量。

关于c++ - 使用模板化参数的 value_type,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8073052/

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