Specifically I'm trying to do this? How would I accomplish it?
class Test {
private int var1;
public Test(int var1) {
var1 = var1; //set the member variable to what was passed in
}
}
I'm sure there's a very obvious answer. It's just escaping me right now.
this.x = x) gets used for setters and constructors. There's no point in inventing a new name. – maaartinus Jan 27 '11 at 3:38