是否可以将容器的value_type作为模板参数传递?
类似的东西:
template<typename VertexType>
class Mesh
{
std::vector<VertexType> vertices;
};
std::vector<VertexPositionColorNormal> vertices;
// this does not work, but can it work somehow?
Mesh<typename vertices::value_type> mesh;
// this works, but defeats the purpose of not needing to know the type when writing the code
Mesh<typename std::vector<VertexPositionColorNormal>::value_type> mesh;
我在创建网格(第一个)时得到“无效的模板参数”,但它应该正常工作吗?我在编译时传递一个已知类型,为什么它不起作用?有什么替代品吗?
感谢。
答案 0 :(得分:7)
在C ++ 11中,您可以使用decltype
:
Mesh<decltype(vertices)::value_type> mesh;
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
完整的编译示例如下:
#include <vector>
struct VertexPositionColorNormal { };
template<typename VertexType>
class Mesh
{
std::vector<VertexType> vertices;
};
int main()
{
std::vector<VertexPositionColorNormal> vertices;
Mesh<decltype(vertices)::value_type> mesh;
// ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
}
另一方面,如果您仅限于C ++ 03,那么您可以做的最好的事情就是定义类型别名:
int main()
{
std::vector<VertexPositionColorNormal> vertices;
typedef typename std::vector<VertexPositionColorNormal>::value_type v_type;
// this does not work, but can it work somehow?
Mesh<v_type> mesh;
}