C ++中不同类型的数组

时间:2019-05-04 08:21:51

标签: c++ arrays templates types

是否可以制作不同变量类型的数组? 例如,

int p1[]={1, 2, 3};
float p2[]={1.1, 2.2, 3.3};
double p3[]={...};
...
...

arr[0].ptr = p1;
arr[1].ptr = p2;
...

首先,我尝试使用枚举,void * ptr和std :: same与模板解决此问题。我做到了,但是看起来真的很脏。这样。

enum dataType{...}
struct arr{
    void *p
    dataType datatype
}
template<typename T>
void insert(T x){
    if(std::is_same<T, int*>) /* ... */
    else if(std::is_same<T, float*>) /* ... */
    ...
}
void foo(int a, int b){
    std::cout<<(TYPE_CHANGE_SOMEHOW)arr[a].ptr[b]<<std::endl;
}
// and much more

所以我正在寻找其他方式。

  • std :: tuple需要使用特定的类型声明,因此我不能使用它们。
  • 仅使用void *不能用于索引访问

1 个答案:

答案 0 :(得分:1)

您可能要考虑std::variant中的std::arraystd::vector

std::vector<std::variant<int, float>> vvec;
vvec.push_back(42);
vvec.push_back(3.1415);

try
{
   std::get<float>(vvec[0]); // vvec[0] contains int, not float: will throw
}
catch (const std::bad_variant_access&)
{
    // Handle exception
}