I have a vector of pointers to objects that I am iterating through using std::vector::iterator`. Since the element returned is itself a pointer I dereference the iterator twice, once to return the pointer and once to resolve the pointer to the actual object.

I'm trying to invoke a member function (getClass) that returns an std::string and I have tried both (**it).getClass() and (*it)->getClass() but both give me a segmentation fault. I keep feeling like I'm missing something obvious.

partial function code:

void dataSet::createFolds()
{
   // Shuffle the data vector
   std::random_shuffle( m_records.begin(), m_records.end());

   std::cout << "STARTING MAIN LOOP.  THERE ARE " << m_records.size() << " RECORDS\n";
   // iterate through the data vector and assign each to a fold
   std::vector<dataRecord *>::iterator it = m_records.begin();
   while (it != m_records.end())
   {
      std::string currentClass = (*it)->getClass();  // SEG FAULT HERE
      .
      .
      .
   }
   .
   .
   .
}

The vector is m_records ... code

dataRecord is defined like this ... code

In response to questions about filling the vector:

The data is read from a text file and I really don't want to post the entire thing unless I have to (212 lines) but the pertinent code for populating the vector is below. The constructor for the dataRecord object takes a vector of field objects. I use a temporary pointer, use new to create the object then push_back the pointer.

while ...
{
   std::vector<field> fields;

   // build the fields vector
   for (unsigned int i = 0; i < numAttribs; ++i)
      fields.push_back(field(data.at(i), attribTypes[i]));

   // create the new dataRecord
   dataRecord * newRecord = new dataRecord(fields);

   // add the record to the set
   m_records.push_back(newRecord);

   ++recordNum;
   std::cout << "read record " << recordNum << std::endl;
}
link|improve this question

1  
Looks like the bug is related to how you're populating the vector. Post the relevant code and we can take a look. – Kerrek SB Oct 4 '11 at 13:45
Your definitions are fine, but I guess the problem lies somewhere else. Maybe at the time you are filling the vector? Are you 100% sure that you do not insert any NULLs into the vector? – Constantinius Oct 4 '11 at 13:46
Could one or more of your pointers be dangling, i.e., pointing to something that was destroyed? – Fred Larson Oct 4 '11 at 13:47
I was assuming that the problem was with dereferenceing since stepping through with gdb crashed right then. I'm gonna go step through the constructor and verify whats being placed in the vector and the state of all the objects involved. – Matt Oct 4 '11 at 14:01
Stepping through with gdb it appears to be filling m_records correctly. There are definitely no null elements. – Matt Oct 4 '11 at 14:22
show 2 more comments
feedback

4 Answers

up vote 0 down vote accepted

In my opinion the vector elements are badly initialized. Perhaps you have to test the code that fill the vector independently before testing to extract them. Sorry for my english ;)

link|improve this answer
feedback

Either the pointers in your containers are null, or they are dangling pointers to free'd memory.

Double check the code that fills m_records.

link|improve this answer
feedback

In

std::string dataRecord::getClass() {return m_data.at(m_data.size() - 1).getTextData();}

You must to verify m_data.size() because could be 0, so you will get an exception of out or range.

link|improve this answer
Post the code that fills m_records – Tio Pepe Oct 4 '11 at 13:57
Sorry, I just saw it – Tio Pepe Oct 4 '11 at 13:58
feedback
// create the new dataRecord
   dataRecord * newRecord = new dataRecord(fields);

I'm guessing the bug is in dataRecord's constructor. Are you sure it's doing it's job properly?

link|improve this answer
Fields is a vector of field objects not another dataRecord so it isn't a copy constructor. – Matt Oct 4 '11 at 14:15
@Matt yes, my bad. Edited... – jrok Oct 4 '11 at 14:19
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.