473,386 Members | 1,654 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,386 software developers and data experts.

strange runtime error caused by enum

Hi,

I've been trying to debug a strange runtime error for the last 5
hours... I'm hoping someone might have an insight about it.

I have an application that creates a vector of MyDisplay objects
(MyDisplay is a custom class) and then uses them in various ways. The
application has been compiling and running fine. Then I added a
member variable of type enum to MyDisplay. So my class def now looks
like this:

class MyDisplay {
enum DisplayType {SMALL,MEDIUM,LARGE};
private:
DisplayType _displayType;
//....
// all the rest of the def is the same as before
}

I also added a default value in the constructor initialization list:

MyDisplay::MyDisplay() : _displayType(MEDIUM),
//rest of ctor def is same as before

Those are the ONLY two changes I've made so far. The app still
compiles without error. However, it now crashes when I run it. (If I
remove those changes, it will run perfectly). In particular, it
crashes when the vector of MyDisplay objects is being created. The
code creates 10 of them in total, and it crashes after the fourth one
has been constructed and added to the vector.

However, there does not seem to be a memory overload. The app never
uses more 3.5 MG memory, and each MyDisplay adds less than
200K.

PLEASE NOTE: I know that I'm leaving many possibly relevant details
out of my description, but it would be too much to ask anyone to look
at the whole app, as its fairly large. I'm just hoping that the
description above might ring some bells for someone.

Thanks for any thoughts,
cpp
Jul 22 '05 #1
7 1930
* cppaddict:

I've been trying to debug a strange runtime error for the last 5
hours... I'm hoping someone might have an insight about it.

I have an application that creates a vector of MyDisplay objects
(MyDisplay is a custom class) and then uses them in various ways. The
application has been compiling and running fine. Then I added a
member variable of type enum to MyDisplay. So my class def now looks
like this:

class MyDisplay {
enum DisplayType {SMALL,MEDIUM,LARGE};
private:
DisplayType _displayType;
//....
// all the rest of the def is the same as before
}

I also added a default value in the constructor initialization list:

MyDisplay::MyDisplay() : _displayType(MEDIUM),
//rest of ctor def is same as before

Those are the ONLY two changes I've made so far. The app still
compiles without error. However, it now crashes when I run it. (If I
remove those changes, it will run perfectly). In particular, it
crashes when the vector of MyDisplay objects is being created. The
code creates 10 of them in total, and it crashes after the fourth one
has been constructed and added to the vector.


Most probably the problem is with the definition of DisplayType.

Does it support copy construction? Does it support assignment? Those
are requirements of std::vector, if I recall correctly.

Btw., it's a good idea to always use all uppercase names for _macros_,
and never for anything else (it's a convention that avoids name clashes).

--
A: Because it messes up the order in which people normally read text.
Q: Why is it such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?
Jul 22 '05 #2
Alf,

Thanks for you reply. Could you clarify one point?
Most probably the problem is with the definition of DisplayType.

Does it support copy construction? Does it support assignment? Those
are requirements of std::vector, if I recall correctly.

DisplayType is just an enum defined inside MyDisplay (which is the
type that the vector is made up of). I didn't think that you would
make a copy constructor of an enum type. Am I wrong here?
Btw., it's a good idea to always use all uppercase names for _macros_,
and never for anything else (it's a convention that avoids name clashes).


Thanks for the tip. Is there a standard way to indicate an constant?
That's what I was trying to do.

Thanks again,
cpp
Jul 22 '05 #3
* cppaddict:
Alf,

Thanks for you reply. Could you clarify one point?
Most probably the problem is with the definition of DisplayType.

Does it support copy construction? Does it support assignment? Those
are requirements of std::vector, if I recall correctly.


DisplayType is just an enum defined inside MyDisplay (which is the
type that the vector is made up of). I didn't think that you would
make a copy constructor of an enum type. Am I wrong here?


Mea culpa. I didn't connect the two things.

The following compiles & runs fine; perhaps you can add more and more
in an effort to identify the problem:
#include <vector>

class MyDisplay
{
private:
enum DisplayType {SMALL,MEDIUM,LARGE};
DisplayType _displayType;
public:
MyDisplay(): _displayType(MEDIUM) {}
};

int main()
{
std::vector<MyDisplay> v( 10 );
std::vector<MyDisplay> v2 = v;
}

--
A: Because it messes up the order in which people normally read text.
Q: Why is it such a bad thing?
A: Top-posting.
Q: What is the most annoying thing on usenet and in e-mail?
Jul 22 '05 #4

"cppaddict" <he***@hello.com> wrote in message
news:om********************************@4ax.com...
Hi,

I've been trying to debug a strange runtime error for the last 5
hours... I'm hoping someone might have an insight about it.

I have an application that creates a vector of MyDisplay objects
(MyDisplay is a custom class) and then uses them in various ways. The
application has been compiling and running fine. Then I added a
member variable of type enum to MyDisplay. So my class def now looks
like this:

class MyDisplay {
enum DisplayType {SMALL,MEDIUM,LARGE};
private:
DisplayType _displayType;
//....
// all the rest of the def is the same as before
}

I also added a default value in the constructor initialization list:

MyDisplay::MyDisplay() : _displayType(MEDIUM),
//rest of ctor def is same as before

Those are the ONLY two changes I've made so far. The app still
compiles without error. However, it now crashes when I run it. (If I
remove those changes, it will run perfectly). In particular, it
crashes when the vector of MyDisplay objects is being created. The
code creates 10 of them in total, and it crashes after the fourth one
has been constructed and added to the vector.


From my experiance, a problem like this is usually caused by apparently
unrelated code. Often, it is caused by writing past the end of a local
array. When you do that, you trash the memory beyond the array's bounds,
which may or may not cause problems (at least not obvious ones, especially
in a debug build). When you later add something to the program, suddenly
that memory location just beyond the array becomes important, and
overwriting it causes a crash.

I'd look very carefully for something like this. I can't say how many times
I've seen it happen. Not that *I've* ever written beyond the end of an
array, of course! ;-)

-Howard


Jul 22 '05 #5
****UPDATE****

I have tried chaning the data type of _truncType to int.

When I do so I still see the problem, which means that it is not
specific to enum, but simply due to adding a new data member. Please
let me know if that gives you any new ideas.

From my experiance, a problem like this is usually caused by apparently
unrelated code. Often, it is caused by writing past the end of a local
array. When you do that, you trash the memory beyond the array's bounds,
which may or may not cause problems (at least not obvious ones, especially
in a debug build). When you later add something to the program, suddenly
that memory location just beyond the array becomes important, and
overwriting it causes a crash.

I'd look very carefully for something like this. I can't say how many times
I've seen it happen. Not that *I've* ever written beyond the end of an
array, of course! ;-)


Howard,

Thanks for thoughts.

Two things:

1. It couldn't be an array problem per se, because my code only uses
vectors.

2. Nevertheless, it may be a problem similar to what you describe.
Can you offer any ideas about specific things I should be on the alert
for?

thanks again,
cpp
Jul 22 '05 #6
On Tue, 13 Jul 2004 21:01:19 GMT in comp.lang.c++, cppaddict
<he***@hello.com> wrote,
1. It couldn't be an array problem per se, because my code only uses
vectors.


It could easily be a ~"array problem"~ if you use vector::operator[]
since the subscript is unchecked just as for bare naked arrays.
Try changing some or all of your operator[] to vector::at().

Jul 22 '05 #7
It could easily be a ~"array problem"~ if you use vector::operator[]
since the subscript is unchecked just as for bare naked arrays.
Try changing some or all of your operator[] to vector::at().


Thanks for that tip.

It turns out that the problem was much more mundane: My Makefile was
not updating one of the files that needed to be updated, so it was
using an outdated object file.

Thanks anyway for your help,
cpp
Jul 22 '05 #8

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

14
by: Allcomp | last post by:
Hello, I have seen something really strange in VB6 If I do a Int ( (5 * 1.2)) , I receive the value 5, but I should receive 6? Is this a bug or something really "normal". I can see that if I...
3
by: kajol | last post by:
Hi everyone I am trying to get the content of any webpage (URL) using XMLHTTP, and it is working fine for me, but suddenly I have got a URL "http://www.bizrate.com/" which is causing a system...
3
by: Bruno van Dooren | last post by:
Hi All, i have some (3) different weird pointer problems that have me stumped. i suspect that the compiler behavior is correct because gcc shows the same results. ...
6
by: Peter Frost | last post by:
Please help I don't know if this is possible but what I would really like to do is to use On Error Goto to capture the code that is being executed when an error occurs. Any help would be much...
9
by: Lawrence Oluyede | last post by:
I have a list of strings and i'd like to build up an enum from them... is there a way to do that? Thanks in advance. -- Lawrence "Rhymes" Oluyede http://loluyede.blogspot.com
3
by: Sampson | last post by:
I have a question about enumeration and how to populate them during runtime. I am using vb.net but will happily take any advice in c# as well. Here is an example to help illustrate what I am...
1
by: Dirk Theune | last post by:
Hi, when compiling with debug information, I get an error: fatal error C1067: compiler limit : debug information module size exceeded The error is caused by a very large enum (about 2000...
4
by: r.z. | last post by:
My program behaves very strange. I keep getting the following error: 'The instruction at "some address" referenced memory at "some address". The memory could not be written"' The program consists...
4
by: David | last post by:
I'm using the AxSHDocVw.WebBrowser control to download data from a webpage at work (it's an internal page on my company's intranet). The page produces a runtime error after a while and the...
0
by: taylorcarr | last post by:
A Canon printer is a smart device known for being advanced, efficient, and reliable. It is designed for home, office, and hybrid workspace use and can also be used for a variety of purposes. However,...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
1
by: nemocccc | last post by:
hello, everyone, I want to develop a software for my android phone for daily needs, any suggestions?
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However,...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.