DEV Community

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

Posted on

1

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)

Image of Docusign

🛠️ Bring your solution into Docusign. Reach over 1.6M customers.

Docusign is now extensible. Overcome challenges with disconnected products and inaccessible data by bringing your solutions into Docusign and publishing to 1.6M customers in the App Center.

Learn more