pointers.?????????

pOrder->GetValue(CL_ORD_ID, sVal);
what will be the status of pOrder here??
Getvalue function is to store value Of svalue to CL_ORD_ID
What is pOrder? What does 'status of pOrder' mean? What are GetValue arguments? Which is the body of that function? ....
http://www.cplusplus.com/forum/articles/1295/

You need to be more precise with your question
we can say that
pOrder == pOrder
, at least^^...
pOrder would be a pointer to the class which GetValue() is a member of... as for the
'status of pOrder'
it is for the most part unchanged.. try to be more clear about what your asking

I assume this is confusing since pOrder is a 'pointer'. the only differance, when you initialize pOrder

 
your_class* pOrder = new your_class;


you never actually 'create' a new variable
Last edited on
Topic archived. No new replies allowed.