玄学CE
  • 板块学术版
  • 楼主fjy666
  • 当前回复4
  • 已保存回复4
  • 发布时间2021/11/29 15:28
  • 上次更新2023/11/3 23:17:22
查看原帖
玄学CE
366338
fjy666楼主2021/11/29 15:28
//writer:fjy
#define _GLIBCXX_DEBUG
#include <vector>
#include <queue> 
using namespace std;
vector<int> a; 
queue<int> Q;
int main() {
    return 0;
}

在我的电脑上 terminate called after throwing an instance of '__gnu_cxx::__concurrence_lock_error' what(): __gnu_cxx::__concurrence_lock_error


//writer:fjy
#define _GLIBCXX_DEBUG
#include <vector>
#include <queue> 
using namespace std;
queue<int> Q;
vector<int> a; 
int main() {
    return 0;
}

没有任何问题

2021/11/29 15:28
加载中...