how use this?
in
Programming Questions
•
10 months ago
hi
whats the difference in
class Aclass{
int x, y;
Aclass(int x_, int y_ ){
x=x_;
y=y_;
and
class Aclass{
int x,y;
Aclass(int x, int y){
this.x = x;
this.y = y;
}
1