I am trying to take my array of classes and add the values from one part of it together.
I have everything ready but being able to add the parts of the array into a variable which I can use.
Right now, I am using this to try and add up the totals
order1 = carArray[0].getordervalue;
order2 = carArray[1].getordervalue;
order3 = carArray[2].getordervalue;
I am getting an error like this one
'error C2440: '=' : cannot convert from 'int (__thiscall Car::*)(void)' to 'int'
Conversion is a valid standard conversion, which can be performed implicitly or by use of static_cast, C-style cast or function-style cast'
when I try to compile. It is not letting me pt what is stored in that part of the array, into another variable [which I will then use to find the total]
Does any have any suggestions or tips on how to fix this?
I am still working on it, so if I fix it before someone replies, I will edit this and show how I did fix it.
Thank you.