Say I have the following code:
class myClass
{
private String _input;
public myClass(String input)
{
_input = input;
}
}
I want to initialize a member variable from parameter to the
constructor, this works, but I don't think it "looks" very good.
Is there a better way to set the _input from the parameter in the
constructor? Possibly having my private variable also called "input"
not "_input".
Chris Brat - 17 Sep 2006 11:58 GMT
Hi,
Try this.
Regards,
Chris
public class myClass {
private String input;
public myClass(String input) {
this.input = input;
}
}
> Say I have the following code:
>
[quoted text clipped - 13 lines]
> constructor? Possibly having my private variable also called "input"
> not "_input".