Problems returning vector stack reference - Stack Overflow most recent 30 from stackoverflow.com 2010-03-20T21:05:46Z http://stackoverflow.com/feeds/question/1657807 http://www.creativecommons.org/licenses/by-nc/2.5/rdf http://stackoverflow.com/questions/1657807/problems-returning-vector-stack-reference 1 Problems returning vector stack reference David Davidson http://stackoverflow.com/users/196034 2009-11-01T17:54:43Z 2009-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&lt;indexStruct, std::allocator&lt;indexStruct&gt; &gt;' has no member named 'name' 2. no matching function for call to `std::vector&lt;indexStruct, std::allocator&lt;indexStruct&gt; &gt;::push_back(std::vector&lt;indexStruct, std::allocator&lt;indexStruct&gt; &gt;&amp;)' </code></pre> <p>exampleApp.cpp</p> <pre><code>#include "exampleApp.h" exampleApp::exampleApp() { this-&gt;makeCatalog(); } char* findCWD() { char* buffer = new char[_MAX_PATH]; return getcwd(buffer, _MAX_PATH); } void exampleApp::makeCatalog() { char* cwd = this-&gt;findCWD(); vector&lt;indexStruct&gt; indexItems; this-&gt;indexDir(cwd, indexItems); } void exampleApp:indexDir(char* dirPath, vector&lt;indexStruct&gt;&amp; indexRef) { DIR *dirPointer = NULL; struct dirent *dirItem = NULL; vector&lt;indexStruct&gt; indexItems; vector&lt;indexStruct&gt; indexItem; try { if ((dirPointer = opendir(dirPath)) == NULL) throw 1; while (dirItem = readdir(dirPointer)) { if (dirItem == NULL) throw 2; if (dirItem-&gt;d_name[0] != '.') { indexItem.name = dirItem-&gt;d_name; indexItem.path = dirPath; indexItems.push_back(indexItem); indexItem.clear(); } } indexRef.swap(indexItems); closedir(dirPointer); } catch(int errorNo) { //cout &lt;&lt; "Caught Error #" &lt;&lt; errorNo; } } </code></pre> <p>exampleApp.h</p> <pre><code>#ifndef EXAMPLEAPP_H #define EXAMPLEAPP_H #include &lt;iostream.h&gt; #include &lt;dirent.h&gt; #include &lt;stdlib.h&gt; #include &lt;vector.h&gt; using namespace std; struct indexStruct { char* name; char* path; }; class exampleApp { public: exampleApp(); private: char* findCWD(); void makeCatalog(); void indexDir(char* dirPath, vector&lt;indexStruct&gt;&amp; 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#1657828 0 Answer by AraK for Problems returning vector stack reference AraK http://stackoverflow.com/users/127893 2009-11-01T18:00:44Z 2009-11-01T18:00:44Z <p>You are defining a <code>vector</code> called <code>indexItem</code>:</p> <pre><code>vector&lt;indexStruct&gt; 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-&gt;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#1657842 0 Answer by joshperry for Problems returning vector stack reference joshperry http://stackoverflow.com/users/30587 2009-11-01T18:04:23Z 2009-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-&gt;d_name[0] != '.') { indexStruct indexItem; indexItem.name = dirItem-&gt;d_name; indexItem.path = dirPath; indexItems.push_back(indexItem); } } </code></pre>