I am trying to run a compiled c++ file. I think I understand that this has something to do with pointer errors and so on, yet I can't see any real error in my code.
The error message is as follows:
3 [main] main 2600 _cygtls::handle_exceptions: Exception: STATUS_ACCESS_VIOLATION
6781351 [main] main 2600 open_stackdumpfile: Dumping stack trace to main.exe.stackdump
8167409 [main] main 2600 _cygtls::handle_exceptions: Exception: STATUS_ACCESS_VIOLATION
8168698 [main] main 2600 _cygtls::handle_exceptions: Exception: Error while dumping state (probably corrupted stack)
My code for my program is as follows:
main.cpp
#include "ReadWords.h"
int main()
{
ReadWords rw("hamlet.txt");
rw.getNextWord();
rw.close();
}
ReadWords.h
#ifndef READWORDS_H
#define READWORDS_H
/**
* ReadWords class. Provides mechanisms to read a text file, and return
* capitalized words from that file.
*/
using namespace std;
#include <string>
#include <fstream>
class ReadWords
{
public:
/**
* Constructor. Opens the file with the default name "text.txt".
* Program exits with an error message if the file does not exist.
*/
ReadWords();
/**
* Constructor. Opens the file with the given filename.
* Program exits with an error message if the file does not exist.
* @param filename - a C string naming the file to read.
*/
ReadWords(char *filename);
/**
* Closes the file.
*/
void close();
/**
* Returns a string, being the next word in the file. All letters are converted
* to lower case, unless the word is BEGIN, FINIS, CAST or SCENE
* Leading and trailing punctuation marks are not included in the word
* @return - string - next word.
*/
string getNextWord();
/**
* Returns true if there is a further word in the file, false if we have reached the
* end of file.
* @return - bool - !eof
*/
bool isNextWord();
// working storage.
private:
string nextword;
ifstream wordfile;
bool eoffound;
};
#endif
ReadWords.cpp
#include "ReadWords.h"
#include <iostream>
#include <cctype>
using namespace std;
//:: Defines function as member of class.
ReadWords::ReadWords()
{
wordfile.open("text.txt");
}
ReadWords::ReadWords(char *filename)
{
wordfile.open("hamlet.txt");
if(!wordfile)
{
cout << "Couldn't open file";
}
}
void ReadWords::close()
{
wordfile.close();
}
string ReadWords::getNextWord()
{
//wordfile >> nextword;
cout << "Hello";
}
/*
bool isNextWord()
{
}
*/
Any help would be greatly appreciated.
ReadWords::getNextWord()method is missing areturnstatement. – Hristo Iliev Nov 13 '12 at 17:43ReadWords::getNextWord(). Perhaps update your makefile to include it in the compilation step. – WhozCraig Nov 13 '12 at 17:53