encapsulation

PHOTO EMBED

Tue Jan 09 2024 19:35:20 GMT+0000 (Coordinated Universal Time)

Saved by @E23CSEU1151 #java

class A
{
    private int value;
    
    public void setValue(int x)
    {
        value=x;
    }
    public int getValue()
    {
        return value;
    }
}
class D
{
    public static void main(String[] args){
    A r= new A();
    r.setValue(500);
    System.out.println(r.getValue());
    }
}
content_copyCOPY