Problems returning vector stack reference - Stack Overflow most recent 30 from stackoverflow.com2010-03-20T21:05:46Zhttp://stackoverflow.com/feeds/question/1657807http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1657807/problems-returning-vector-stack-reference1Problems returning vector stack referenceDavid Davidsonhttp://stackoverflow.com/users/1960342009-11-01T17:54:43Z2009-11-01T18:30:10Z
<p>Hello,</p>
<p>I am working on an application that builds a vector of structs for items in a given directory and returns a reference of the vector for it to be read, I receive the following errors when attempting to compile the example code below:</p>
<pre><code>1. 'class std::vector<indexStruct, std::allocator<indexStruct> >' has no member named 'name'
2. no matching function for call to `std::vector<indexStruct, std::allocator<indexStruct> >::push_back(std::vector<indexStruct, std::allocator<indexStruct> >&)'
</code></pre>
<p>exampleApp.cpp</p>
<pre><code>#include "exampleApp.h"
exampleApp::exampleApp()
{
this->makeCatalog();
}
char* findCWD()
{
char* buffer = new char[_MAX_PATH];
return getcwd(buffer, _MAX_PATH);
}
void exampleApp::makeCatalog()
{
char* cwd = this->findCWD();
vector<indexStruct> indexItems;
this->indexDir(cwd, indexItems);
}
void exampleApp:indexDir(char* dirPath, vector<indexStruct>& indexRef)
{
DIR *dirPointer = NULL;
struct dirent *dirItem = NULL;
vector<indexStruct> indexItems;
vector<indexStruct> indexItem;
try
{
if ((dirPointer = opendir(dirPath)) == NULL) throw 1;
while (dirItem = readdir(dirPointer))
{
if (dirItem == NULL) throw 2;
if (dirItem->d_name[0] != '.')
{
indexItem.name = dirItem->d_name;
indexItem.path = dirPath;
indexItems.push_back(indexItem);
indexItem.clear();
}
}
indexRef.swap(indexItems);
closedir(dirPointer);
}
catch(int errorNo)
{
//cout << "Caught Error #" << errorNo;
}
}
</code></pre>
<p>exampleApp.h</p>
<pre><code>#ifndef EXAMPLEAPP_H
#define EXAMPLEAPP_H
#include <iostream.h>
#include <dirent.h>
#include <stdlib.h>
#include <vector.h>
using namespace std;
struct indexStruct
{
char* name;
char* path;
};
class exampleApp
{
public:
exampleApp();
private:
char* findCWD();
void makeCatalog();
void indexDir(char* dirPath, vector<indexStruct>& indexRef);
};
#endif
</code></pre>
<p>What am I doing wrong here, and is there a better way going about this?</p>
http://stackoverflow.com/questions/1657807/problems-returning-vector-stack-reference/1657828#16578280Answer by AraK for Problems returning vector stack referenceAraKhttp://stackoverflow.com/users/1278932009-11-01T18:00:44Z2009-11-01T18:00:44Z<p>You are defining a <code>vector</code> called <code>indexItem</code>:</p>
<pre><code>vector<indexStruct> indexItem;
</code></pre>
<p>This is just an array. So the following lines must be changed to reference a specific element of the vector:</p>
<pre><code>indexItem.name = dirItem->d_name;// should be indexItem[..].name or indexItem.at(..).name
indexItem.path = dirPath; // same as above!
</code></pre>
http://stackoverflow.com/questions/1657807/problems-returning-vector-stack-reference/1657842#16578420Answer by joshperry for Problems returning vector stack referencejoshperryhttp://stackoverflow.com/users/305872009-11-01T18:04:23Z2009-11-01T18:30:10Z<p>You've made 'indexItem' a vector, you probably just want it to be the type you want to put in 'indexItems'. Also, I'd create the new struct in your loop:</p>
<pre><code> while (dirItem = readdir(dirPointer))
{
if (dirItem == NULL) throw 2;
if (dirItem->d_name[0] != '.')
{
indexStruct indexItem;
indexItem.name = dirItem->d_name;
indexItem.path = dirPath;
indexItems.push_back(indexItem);
}
}
</code></pre>