Java - Encapsulation
Find the problem in this code snippet related to data hiding:
class Car {
private int speed;
public void setSpeed(int speed) {
speed = speed;
}
public int getSpeed() {
return speed;
}
}