DEV Community

V I N O T H
V I N O T H

Posted on

Day 11 Encupsulation

Input 1:

class Friend1
{
String name;
long mobileNo;
int atmPin;

public Friend1(String name, long mobileNo, int atmPin)
{
this.name = name;
this.mobileNo = mobileNo;
this.atmPin = atmPin;
}

public static void main(String[] args)
{
Friend1 f1 = new Friend1("Kavin", 1234, 1111);
f1.withdraw();
}
private void withdraw()
{
System.out.println(atmPin);
}
public void tour()
{
System.out.println("Going for a ride");
}

public void publish_results()
{
System.out.println("Pass with good marks ");
}

}

Input 2:

class Friend2
{

public static void main(String[] args)
{
Friend1 ff = new Friend1("Arul", 3434, 2323);
ff.tour();
ff.withdraw();
}

}

Output:

Image description

Top comments (0)