How To Implement Encapsulation In Java

Rate this article
0 out of 5
In this tutorial we will show you how to implement encapsulation in java. After viewing the video tutorial, download the source code and try to modify the code so as to get a feel of what is learned in this video tutorial.


Source Code
 Encapsulation.java

import java.io.*;
class Encapsulation
{
  //declaring private members
  private String name;
  private int age;
 
  //declaring public members
  public void setName()
  {
    name="John";
  }
  public String getName()
  {
    return name;
  }
  public void setAge()
  {
    age=21;
  }
  public int getAge()
  {
    return age;
  }

  public static void main(String args[])
  {
    //creating object for the class 
    Encapsulation e=new Encapsulation();
    
    //initializing the variables
    e.setName();
    e.setAge();
    
   //getting values from the variables
   System.out.println("Name:"+e.getName());
   System.out.println("Age:"+e.getAge());
  }
}
    


Source Code

Joined Date :04-Feb-2013
Articles
Posted
27
Messages
Posted
0


   
Messages
Posted:
Post Your Comments
Name (Max 50 Chars)
Comments
   Design  HTML

TekTipsDownload
GateExam
Academic Projects
TekTipsExperts



 
Site optimized for IE7, 1280 X 768 and above. Copyright © 2010 - 2018 KTS InfoTech
Site Developed Using KTS WebCloud