这是代码的一部分:
#include <iostream>
#include <vector>
#include <string>
using namespace std;
int main(int argc, char *argv[])
{
ios_base::sync_with_stdio(0);
unsigned long k,p,q, all;
cin >> k >> p >> q;
vector<long> klo(k);
all = 0;
for(unsigned long i = 0;i<k;i++){
scanf("%d", &klo[i]);
all += klo[i];
}
vector<unsigned long> stack(all);
stack[1] = 1;
stack.at(2) = 2;
....REST OF THE CODE....
return 0;
}
它可以在 Windows 和 Linux 上编译。在 Windows 上运行没有问题,但是当我尝试在 Linux 上运行它时stack[1] = 1;
显示:Error: signal: 11
有
什么问题?stack.at(2) = 2;
Error: signal:6
@EDIT:我发现all
变量是空的。似乎all += klo[i];
没有返回正确的值。但不知道为什么这段代码在 Windows 中有效