1

我只想在 Visual C++ 上初始化一个列表,但出现以下错误:

  • 错误:标识符“列表”未定义
  • 错误 C2065:“列表”:未声明的标识符

为什么会这样?

我的包括:

#include "stdlib.h"
#include "malloc.h"
#include "stdio.h"
#include <set>
#include <vector>
#include <string>
#include <list>
#include "stdafx.h"
#include <iostream>
#include <io.h>
#include <fcntl.h>
#include <fstream>
#include <WebServices.h>
#include "./WCF_managed_app.xsd.h"
#include "./WCF_managed_app_Client.wsdl.h"
#include "./WCF_managed_app_Client.xsd.h"
#include "./schemas.microsoft.com.2003.10.Serialization.xsd.h"
4

1 回答 1

6

您可能已经忘记了using namespace std;cpp 文件中的 ,以便可以访问list位于std命名空间中的定义。

我个人不喜欢使用using namespace std;

我在我的 cpp 文件中使用std::list而不是list

std::list<Element> myList;
myList.push_back(anElement);
于 2012-11-27T13:27:45.930 回答