Why isn't this protected attribute working?

95 Views Asked by At

I use the protected modifier in the following code but it is not working as I would expect.

This is my Prob3.java file and I expected to have error when compiling ob1.x=4; Can anyone explain why I'm not getting one?

class Coordinates2D{
    protected int x,y;
    public Coordinates2D(int x,int y){
        this.x=x;
        this.y=y;
    }
    public int getX(){
        return this.x;  
    }
    public int getY(){
        return this.y;
    }
    public void setX(int val){
        this.x=val;
    }
}

public class Prob3{
    public static void main(String[] args){
        Coordinates2D ob1 = new Coordinates2D(3,4);
        ob1.x=4;  
        System.out.println("Atributele ob 2D: "+ ob1.getX()+" , "+ob1.getY());
    }
}
3

There are 3 best solutions below

2
On BEST ANSWER

The reason you are not getting an error is because you're not doing anything wrong. However, you think you are doing something wrong so let me explain:

The protected keyword allows for a variable to be viewed in any classes in the same package.

Since your prob3 class and your Coordinates2D class are in the same package, protected variables can be accessed in both. If you want to limit the availability of the x and y variables, you should set their access modifier to private:

private int x, y;

Try it, and leave the rest of your code the same. You will get the compiler error you expect.

1
On

The protected keyword limits the scope of the accessibility of either a variable or a function to within the same package, or any subclass inheriting the class with said variable or function. This means that as long as two classes are in the same package, they will be able to access each other's attributes and methods with the protected keyword. In this case they're not only in the same package, but also in the same class file. If you wanted to restrict the access of x,y to only within the Coordinates2D class, use the keyword private instead.

0
On

protected members are visible to

  • the class itself
  • any subclasses of the class, and
  • any classes in the same package.

Since these classes are in the same file, they're in the same package, and therefore they will have access.