if i have a constructor like so:
public Constructor (int a, int b){
int c = a;
int d = b;
}
How can i then use variable c and d in a method within the same class as the constructor because trying to use just the variables name in the method doesn't seem to work?
int c = int a;will not compile, you needint c = a;