不完整类型不允许错误和元组

时间:2016-07-05 17:40:09

标签: c++ visual-c++ std

所以我面临这个错误

  

不允许使用不完整类型

#include "stdafx.h"
#include <iostream>
#include <conio.h>
#include <ctype.h>
#include <sstream>
using namespace std;

int main()
{
    std::tuple<int, bool, float> human = {345, true, 2.33}; 
    // Incomplete type is not allowed  

    system("pause");
    return 0;
}

有任何线索吗?

2 个答案:

答案 0 :(得分:14)

您需要#include <tuple>才能使用它。

答案 1 :(得分:0)

未包含头文件。