How To Implement Protected Class In Java
Rate this article
0 out of 5
In this tutorial we will show you how to implement protected class 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

protected class.java

//program to illustrate the use of protected class in java

import java.io.*;
//declaring the base class

class Base
{
int roll;
String name;
//making the class protected type
protected Base()
{
roll=1;
name="Anna";
}
void display()
{
System.out.println("RollNo :"+roll);
System.out.println("Name   :"+name);
}
}

//Another class inherits 'Base'

class Derived extends Base
{
int marks;
//declaring derived class constructor

Derived()
{
marks=200;
}
void show()
{
display();
System.out.println("Marks  :"+marks);
}
}

//multi level inheritance

class SecDerive extends Derived
{
String place;
//defining constructor

SecDerive()
{
place="Pala";
}
void disp()
{
show();
System.out.println("Place  :"+place);
}
}

//creating a new class

class ProtectedClass
{
public static void main(String args[])
{
//creating object to invoke the function
SecDerive s=new SecDerive();
s.disp();
}


Source Code

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


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

TekTipsDownload
GateExam
Academic Projects
TekTipsExperts



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