Hi,
I want to use a setter method to set the value of insurance that is set depending on the value of cost how would you do this?
A little confused how to get this one to work
Thanks.
Welcome to the Java Programming Forums
The professional, friendly Java community. 21,500 members and growing!
The Java Programming Forums are a community of Java programmers from all around the World. Our members have a wide range of skills and they all have one thing in common: A passion to learn and code Java. We invite beginner Java programmers right through to Java professionals to post here and share your knowledge. Become a part of the community, help others, expand your knowledge of Java and enjoy talking with like minded people. Registration is quick and best of all free. We look forward to meeting you.
>> REGISTER NOW TO START POSTING
Members have full access to the forums. Advertisements are removed for registered users.
Hi,
I want to use a setter method to set the value of insurance that is set depending on the value of cost how would you do this?
A little confused how to get this one to work
Thanks.
Show what you've tried, and describe how it could be better. "depending on" suggests the setter would take a parameter (most do) and then execute logic to set the value of insurance per the parameter.
/** * Set insurance value of the football player */ public void setInsuranceValue() { if (this.cost <= 10) { this.value = 5; } else if (this.cost >10 && this.cost <30) { this.value = 10; } else { this.value = 15; } }
The problem is once I set the cost value the value of value does not change.
jamesh (January 23rd, 2014)
Thanks worked straight away!