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

I am trying to write a method to set the length of a rack.

I am not sure if I have to put a length variable as a parameter in the method

public class Rack {
    int racklength;


    public Rack(int racklength){
        racklength=racklength;
    }
    public int setRackLength(){
        return racklength;
    }
}
share|improve this question
What are you trying to do exactly? – ryanprayogo Apr 26 '11 at 23:45

3 Answers

Yes, you do. When you set something, you need to pass in the external value you want to set the internal value to. Otherwise, how could you set it? So your code should be something like:

public Rack(int racklength) {
    this.racklength = racklength;
}

public void setRackLength(int racklength) {
    this.racklength = racklength;
}

When the parameter has the same name as the member variable, you need to use the this qualifier to tell the compiler which is the member variable and which is the parameter. Alternatively, you could have the parameter named something else:

public void setRackLength(int length) {
    racklength = length;
}
share|improve this answer

A setter method by definition should have a parameter to set the value to:

public void setProperty(PropertyType property) {
    this.property = property;
    // here this.property means the property that belongs to the instance, ie, 'this'
}

Having a "setter" with no parameters doesn't really make any sense.

share|improve this answer

When an argument and class variable share the same name you can user "this." to refer to the class variable. Also, change the name of setRackLength to getRackLength

public Rack(int racklength){
   this.racklength = racklength; 
}
public int getRackLength() { return rackLength; }
public void setRackLength(int rackLength) {
   this.racklength = racklength; 
}
share|improve this answer
Thanks guys i appreciate your help – logic101 Apr 26 '11 at 23:51

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.