所以我面临这个错误
不允许使用不完整类型
#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;
}
有任何线索吗?
答案 0 :(得分:14)
您需要#include <tuple>
才能使用它。
答案 1 :(得分:0)
未包含头文件。