cin 上的 Seg 故障。尝试了endl的事情。在 gdb 上很糟糕
Posted
技术标签:
【中文标题】cin 上的 Seg 故障。尝试了endl的事情。在 gdb 上很糟糕【英文标题】:Seg Fault on cin. Tried the endl thing. Lousy at gdb 【发布时间】:2015-05-01 06:37:51 【问题描述】:我遇到了一个奇怪的段错误,我不明白。
will@will-mint ~/code/byun-sp15 $ g++ -g all_pairs.cpp
will@will-mint ~/code/byun-sp15 $ ./a.out
Please enter filename:
table.txt
Segmentation fault
正如您从 cout staements 中看到的,它在 cin>>filename;
中出现了段错误,这是主要功能:
#include <iostream>
#include <fstream>
#include <vector>
#include <sstream>
using std::cin;
using std::cout;
using std::endl;
using std::string;
using std::ifstream;
using std::vector;
int main()
int n;
string filename;
cout << "Please enter filename: " << endl;
cin >> filename;
cout << "FLAG FLAG FLAG";
ifstream fin(filename.c_str());
if (!fin.is_open())
cout << "ERROR: file not found. Exiting..." << endl;
return -1;
fin >> n;
vector<Table> tables;
int temp;
for (int i = 0; i < n; i++)
for (int j = 0; j < n; j++)
fin >> temp;
tables[0].data[i][j] = temp;
for (int i = 1; i < n-1; i++)
tables.push_back(calc_next_table(tables, i, n));
return 0;
我真的觉得自己像个白痴,我以前从未遇到过这种情况。我找到了this,但没有解决。我什至尝试过 gdb(我真的不知道如何使用),我得到的只是:
Program received signal SIGSEGV, Segmentation fault.
0x0000000000401ae8 in std::vector<std::vector<int, std::allocator<int> >, std::allocator<std::vector<int, std::allocator<int> > > >::operator[] (this=0x0, __n=0) at /usr/include/c++/4.8/bits/stl_vector.h:771
771 return *(this->_M_impl._M_start + __n);
(gdb) list
766 * out_of_range lookups are not defined. (For checked lookups
767 * see at().)
768 */
769 reference
770 operator[](size_type __n)
771 return *(this->_M_impl._M_start + __n);
772
773 /**
774 * @brief Subscript access to the data contained in the %vector.
775 * @param __n The index of the element for which data should be
这看起来像一个矢量正在做一些时髦的事情,但我什至还没有声明我的矢量!有什么想法吗?
编辑:我喜欢@neilson 的回答,但以下仍然抛出段错误:
fin >> n;
vector<Table> tables;
Table t;
tables.push_back(t);
int temp;
for (int i = 0; i < n; i++)
for (int j = 0; j < n; j++)
fin >> temp;
tables[0].data[i][j] = temp;
cout << "FLAG FLAG FLAG" << endl;
表格有一个元素,一个名为data
的vector<vector<int>>
。我也应该发布它吗?
【问题讨论】:
如果将cout << "FLAG FLAG FLAG";
更改为cout << "FLAG FLAG FLAG" << endl;
会怎样?通常(出于某种原因)它实际上不会打印任何内容,直到行尾。
非常棒,让我通过了 cin noow 我进入了实际的段错误
【参考方案1】:
我认为问题出在这里:
fin >> n;
vector<Table> tables;
int temp;
for (int i = 0; i < n; i++)
for (int j = 0; j < n; j++)
fin >> temp;
tables[0].data[i][j] = temp; // HERE
当您访问它时,该向量是空的。
做
tables.push_back(..something..)
首先。 像这样:
fin >> n;
vector<Table> tables;
Table someTable; // Create a table
tables.push_back(someTable); // Put it in the vector
int temp;
for (int i = 0; i < n; i++)
for (int j = 0; j < n; j++)
fin >> temp;
tables[0].data[i][j] = temp;
编辑:
既然你告诉 Table 也有向量,那么你需要改变:
tables[0].data[i][j] = temp;
也可以使用 push_back。
除非先添加元素,否则无法访问向量中的元素。
如果 Table 有成员:
vector<vector<int>> data;
你也许可以这样做:
fin >> n;
vector<Table> tables;
Table someTable; // Create a table
tables.push_back(someTable); // Put it in the vector
int temp;
for (int i = 0; i < n; i++)
tables[0].data.push_back(vector<int>()); // create the i'th vector and insert it
for (int j = 0; j < n; j++)
fin >> temp;
tables[0].data[i].push_back(temp); // Use push_back
注意:我没有测试过这个,因为我不在编译器附近......但我认为这样的事情会做。
【讨论】:
太棒了!非常感谢,它后来坏了,我现在期待它!以上是关于cin 上的 Seg 故障。尝试了endl的事情。在 gdb 上很糟糕的主要内容,如果未能解决你的问题,请参考以下文章