请问为何Segmentation Fault
  • 板块学术版
  • 楼主封禁用户
  • 当前回复7
  • 已保存回复7
  • 发布时间2023/5/6 20:30
  • 上次更新2023/10/23 16:29:54
查看原帖
请问为何Segmentation Fault
735025
封禁用户楼主2023/5/6 20:30

请问为何Segmentation Fault

#include<bits/stdc++.h>
using namespace std;


int main()
{
    unordered_set <string> s(100);
    unordered_set <string>::iterator it;
    s.insert("s");
    s.insert("w");
    it = s.end();
    cout << *it ;
}
2023/5/6 20:30
加载中...