定义const列表

时间:2011-08-06 12:03:41

标签: c++ stl

我做这样的事情并从编译器中获取错误

using namespace std;

///define a method for list
void method(const list<int>&lst) //ERROR here
{
  //do something
}

我不知道为什么

1 个答案:

答案 0 :(得分:7)

#include <list>