Pointer Problem 
July 22nd, 2005, 04:46 PM
| | | Pointer Problem
Hi,
I have come across a problem with a slightly complicated section to a
program I am writing.
I have a class (let's call it ClassA) which has, in its public area, a
variable (which happens to be another class, ClassB) like this:
class ClassA
{
public:
// ...
ClassB myVar;
// ...
}
I have a function (doFunction) in yet another class (ClassC) which takes
a pointer to a ClassB as a parameter. Now, the following compiles and works:
ClassA instance1;
int main()
{
//...
ClassC instance2;
instance2.doFunction(&instance1.myVar);
//...
}
The following, however, compiles but causes an Access Violation when run:
int main()
{
ClassA *ptrInstance1;
ptrInstance1=new ClassA;
ClassC instance2;
instance2.doFunction(&ptrInstance1->myVar);
}
Is there something wrong with my code here? Is the problem in doFuntion?
Any help would be greatly appreciated. Sorry for the horrible
function/class names. Using VC++
Thanks
Connell | 
July 22nd, 2005, 04:46 PM
| | | Re: Pointer Problem
Connell Gauld wrote:[color=blue]
> I have come across a problem with a slightly complicated section to a
> program I am writing.
> I have a class (let's call it ClassA) which has, in its public area, a
> variable (which happens to be another class, ClassB) like this:
>
> class ClassA
> {
> public:
> // ...
> ClassB myVar;
> // ...[/color]
All public? Any constructors? Any reference members? We may be
looking at a POD, then again we may not. Not enough information to
know for sure.
[color=blue]
> }
>
> I have a function (doFunction) in yet another class (ClassC) which takes
> a pointer to a ClassB as a parameter. Now, the following compiles and
> works:
>
> ClassA instance1;
>
> int main()
> {
> //...
> ClassC instance2;
> instance2.doFunction(&instance1.myVar);
> //...
> }
>
> The following, however, compiles but causes an Access Violation when run:
>
> int main()
> {
> ClassA *ptrInstance1;
> ptrInstance1=new ClassA;
> ClassC instance2;
> instance2.doFunction(&ptrInstance1->myVar);
> }
>
> Is there something wrong with my code here? Is the problem in doFuntion?[/color]
The only thing that I can see here that may make a difference is that
the global object 'instance1' is filled with 0s before initialising
to whatever, but when you say
new ClassA;
the object _may_ be left uninitialised, and that means that the value
of 'myVar' is whatever came with the memory 'new' is giving you. Try
replacing it with
new ClassA();
and see if there is a difference. Otherwise, make sure you initialise
all members to something by adding a default constructor to ClassA.
[color=blue]
> Any help would be greatly appreciated. Sorry for the horrible
> function/class names. Using VC++[/color]
VC++ or not shouldn't matter. If you, however, find that your code
works fine if compiled by another compiler, and doesn't if compiled
by VC++, then you should ask in microsoft.public.vc.language for
assistance, perhaps it's a bug. But if not, then there is no
difference what compiler you're using.
V | 
July 22nd, 2005, 04:46 PM
| | | Re: Pointer Problem
On Thu, 22 Jul 2004 22:42:02 +0100, Connell Gauld
<connell@freebreakfast.co.uk> wrote:
[color=blue]
> Hi,
> I have come across a problem with a slightly complicated section to a
> program I am writing.
> I have a class (let's call it ClassA) which has, in its public area, a
> variable (which happens to be another class, ClassB) like this:
>
> class ClassA
> {
> public:
> // ...
> ClassB myVar;
> // ...
> }
>
> I have a function (doFunction) in yet another class (ClassC) which takes
> a pointer to a ClassB as a parameter. Now, the following compiles and
> works:
>
> ClassA instance1;
>
> int main()
> {
> //...[/color]
I'm guesing that you missed out
ClassA instance1;
here.
[color=blue]
> ClassC instance2;
> instance2.doFunction(&instance1.myVar);
> //...
> }
>
> The following, however, compiles but causes an Access Violation when run:
>
> int main()
> {
> ClassA *ptrInstance1;
> ptrInstance1=new ClassA;
> ClassC instance2;
> instance2.doFunction(&ptrInstance1->myVar);
> }
>
> Is there something wrong with my code here?[/color]
No
[color=blue]
> Is the problem in doFuntion?[/color]
Maybe
[color=blue]
> Any help would be greatly appreciated.[/color]
This sort of wierd bug, where slight, seemingly unimportant, changes make
the difference between you code working and not working is a sure sign
that your code is bugged. Unfortunately it tells you very little about
where the bug is. There is nothing wrong with the code you've posted.
VC++ has an excellent debugger. The best suggestion I can make is that you
learn how to use it. Alternatively reduce your program in size until it is
small enough to post here and then post the entire program.
john | 
July 22nd, 2005, 04:46 PM
| | | Re: Pointer Problem
John Harrison wrote:
[color=blue]
> On Thu, 22 Jul 2004 22:42:02 +0100, Connell Gauld
> <connell@freebreakfast.co.uk> wrote:
>[color=green]
>> Hi,
>> I have come across a problem with a slightly complicated section to a
>> program I am writing.
>> I have a class (let's call it ClassA) which has, in its public area,
>> a variable (which happens to be another class, ClassB) like this:
>>
>> class ClassA
>> {
>> public:
>> // ...
>> ClassB myVar;
>> // ...
>> }
>>
>> I have a function (doFunction) in yet another class (ClassC) which
>> takes a pointer to a ClassB as a parameter. Now, the following
>> compiles and works:
>>
>> ClassA instance1;
>>
>> int main()
>> {
>> //...[/color]
>
>
> I'm guesing that you missed out
>
> ClassA instance1;[/color]
I'm guessing that you missed it a few lines up, in the global scope.
And it does make a lot of difference. Read my reply to the OP.
[color=blue]
>
> here.
>[color=green]
>> ClassC instance2;
>> instance2.doFunction(&instance1.myVar);
>> //...
>> }
>> [...][/color][/color]
V | 
July 22nd, 2005, 04:46 PM
| | | Re: Pointer Problem
On Thu, 22 Jul 2004 17:59:34 -0400, Victor Bazarov
<v.Abazarov@comAcast.net> wrote:
[color=blue]
> John Harrison wrote:
>[/color]
[color=blue]
> I'm guessing that you missed it a few lines up, in the global scope.
>
> And it does make a lot of difference. Read my reply to the OP.
>[/color]
Right, sorry about that.
john | 
July 22nd, 2005, 04:46 PM
| | | Re: Pointer Problem
Thanks guys! I used the debug facility (which I should have done before,
not enough coffee today) and found the problem deep inside the the
structure, an uninitialised int.
Thanks again,
Connell | 
July 22nd, 2005, 04:46 PM
| | | Re: Pointer Problem
Victor Bazarov wrote:[color=blue]
> John Harrison wrote:[/color]
.. . .[color=blue][color=green]
>> I'm guesing that you missed out
>>
>> ClassA instance1;[/color]
>
>
> I'm guessing that you missed it a few lines up, in the global scope.
>
> And it does make a lot of difference. Read my reply to the OP.[/color]
Just to clarify for someone who is just learning, if
ClassA instance1; is placed in main(){ ... }
it doesn't get initialized but when places in
the global scope it does?
jmh | 
July 22nd, 2005, 04:46 PM
| | | Re: Pointer Problem
"Connell Gauld" <connell@freebreakfast.co.uk> wrote in message
news:cdpbsn$u9q$1@newsg3.svr.pol.co.uk...[color=blue]
> Hi,
> I have come across a problem with a slightly complicated section to a
> program I am writing.
> I have a class (let's call it ClassA) which has, in its public area, a
> variable (which happens to be another class, ClassB) like this:
>
> class ClassA
> {
> public:
> // ...
> ClassB myVar;
> // ...
> }
>
> I have a function (doFunction) in yet another class (ClassC) which takes
> a pointer to a ClassB as a parameter. Now, the following compiles and[/color]
works:[color=blue]
>
> ClassA instance1;
>
> int main()
> {
> //...
> ClassC instance2;
> instance2.doFunction(&instance1.myVar);
> //...
> }
>
> The following, however, compiles but causes an Access Violation when run:
>
> int main()
> {
> ClassA *ptrInstance1;
> ptrInstance1=new ClassA;
> ClassC instance2;
> instance2.doFunction(&ptrInstance1->myVar);[/color]
Shouldn't this be
instance2.doFunction(ptrInstance1->myVar);
--
Gary | 
July 22nd, 2005, 04:46 PM
| | | Re: Pointer Problem
"jmh" <j_m_h@cox.net> wrote...[color=blue]
> Victor Bazarov wrote:[color=green]
> > John Harrison wrote:[/color]
> . . .[color=green][color=darkred]
> >> I'm guesing that you missed out
> >>
> >> ClassA instance1;[/color]
> >
> >
> > I'm guessing that you missed it a few lines up, in the global scope.
> >
> > And it does make a lot of difference. Read my reply to the OP.[/color]
>
> Just to clarify for someone who is just learning, if
> ClassA instance1; is placed in main(){ ... }
> it doesn't get initialized but when places in
> the global scope it does?[/color]
Yes. An object with static storage duration is different than
one with automatic storage duration if the object is a POD. The
storage for static objects is initialised with 0 before program
begins.
V | 
July 22nd, 2005, 04:47 PM
| | | Re: Pointer Problem
On Thu, 22 Jul 2004 19:25:48 -0400, jmh <j_m_h@cox.net> wrote:
[color=blue]
> Victor Bazarov wrote:[color=green]
>> John Harrison wrote:[/color]
> . . .[color=green][color=darkred]
>>> I'm guesing that you missed out
>>>
>>> ClassA instance1;[/color]
>> I'm guessing that you missed it a few lines up, in the global scope.
>> And it does make a lot of difference. Read my reply to the OP.[/color]
>
> Just to clarify for someone who is just learning, if
> ClassA instance1; is placed in main(){ ... }
> it doesn't get initialized but when places in
> the global scope it does?
>[/color]
Anything with a constructor will get initialised where ever it is placed.
The difference is with constructorless types like ints and pointers. At
global scope they get initialised to zero, at local scope they are garbage.
john | | Thread Tools | Search this Thread | | | |
Posting Rules
| You may not post new threads You may not post replies You may not post attachments You may not edit your posts HTML code is Off | | | | | | What is Bytes?
We are a network of experts and professionals in IT and software development that help one another with answers to tough questions and share insights.
Get the best answers to your questions from over 220,662 network members.
|