I'm trying to add two object fields and assign the total
to sum:
int sum = ((objmilli.millimeters) + (objcenti.centimeters));
I keep getting an error. Can you tell me what's wrong with
my syntax ?
Thanks.....
Pete
Printable View
I'm trying to add two object fields and assign the total
to sum:
int sum = ((objmilli.millimeters) + (objcenti.centimeters));
I keep getting an error. Can you tell me what's wrong with
my syntax ?
Thanks.....
Pete
Pete,
Can you give me a little more info? What is the compile error, and what are
the declared data types of the two object members you are trying to sum?
Also, I presume you have actually instantiated the two objects in question?
(Perhaps posting the entire method body code would help).
BradO
----------
Brad O'Hearne
DevX Section Leader
"Pete" <java.@127.0.0.1> wrote in message news:3d87946c$1@10.1.10.29...
>
> I'm trying to add two object fields and assign the total
> to sum:
>
> int sum = ((objmilli.millimeters) + (objcenti.centimeters));
>
> I keep getting an error. Can you tell me what's wrong with
> my syntax ?
>
> Thanks.....
>
> Pete