Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I see a function definition that looks like this

ClassName::Read(myObjectClass &temp)

I'm trying to call it like this:

myObjectClass *myObj;
ClassName::Read(&myObj);

but that is incorrect. What is the proper way to call it? It needs to be of type myObjectClass&

share|improve this question
Just be careful that if the object 'myObj' is not created in the calling function (e.g. new myObjectClass), the Read will write to some undefined address. – guga Apr 10 '12 at 0:56

2 Answers

up vote 3 down vote accepted

As James correctly points out, the correct syntax is *myObj. The point is that &myObj gives you the address of myObj, which has a type of myObjectClass**. You want instead to dereference myObj to get at the instance of myObjectClass to which it points, hence you use *.

Incidentally, as it stands at the moment, using *myObj would cause undefined behaviour, since myObj itself has not been initialised. If you don't need to dynamically allocate a myObjectClass, you might be better off just doing this:

myObjectClass myObj;
ClassName::Read(myObj);

If dynamic allocation is a must, then you can do e.g.

myObjectClass *myObj = new myObjectClass;
ClassName::Read(*myObj);
//...
delete myObj;
share|improve this answer

Like this:

ClassName::Read(*myObj);
share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.