Write a program to implement encapsulation.
public class Main{
public static void main(String[] args){
Employee s=new Employee();
s.setName("abc");
System.out.println(s.getName());
}
}
class Employee{
private String emp_name;
public String getName(){
return emp_name;
}
public void setName(String emp_name){
this.emp_name=emp_name;
}
}
Comments
Leave a comment