UNIT 2(Java Programming)
UNIT 2(Java Programming)
UNIT-2
Inheritance
• Java, Inheritance is an important pillar of OOP(Object-
Oriented Programming).
• It is the mechanism in Java by which one class is allowed
to inherit another class's features(fields and methods).
• In Java, Inheritance means creating new classes based on
existing ones.
• A class that inherits from another class can reuse the
methods and fields of that class.
• In addition, you can add new fields and methods to your
current class as well.
• The class that is inherited is called the Super class (base
class), the class that inherits the superclass is sub class
(derived class)
Types of Inheritance
extends keyword
• To inherit the class we use the keyword “extends”
super.method_name(<parameters>)
Task
• Check the access modifiers working in Inheritance
• Check final keyword working with methods and classes
Super class variable can reference subclass object
• A reference variable of a superclass can be assigned to any subclass derived from that
superclass.
Ex: class A
{
}
class B extends A
{
}
-----
A oba=new B();
// oba is a superclass variable assigned with subclass memory i.e object of the
subclass
• But the superclass variable can access only the superclass members but not the
subclass. (common sense that superclass does not know what is its derived class)
Polymorphism
• Compile-Time Polymorphism: Whenever an object is bound with its
functionality at compile time, this is known as compile-time
polymorphism. An example is method overloading.
• The situation where you want to define the superclass that only defines a generalized
form that will be shared by all of its subclasses, leaving it to each subclass to fill in the
details.
• Such a class determines the nature of methods that the subclass must implement.
• The abstract class is defined by the keyword abstract.
• The methods whose code is not defined must also be declared with the keyword abstract.
abstract class <classname>
{
---
abstract access_modifier return_type method_name(parameters_list);
}
Note:
• The subclass must implement the code for the abstract method otherwise the subclass
will also be an abstract class.
• We can not instantiate an object of an abstract class.
Example situation
Shape
-stores base and height
-abstract method for computing
area
Triangle Rectangle
Define computing area computing area
Interface
• A pure abstract class said be to an interface.
• An Interface in Java programming language is defined as an abstract type
used to specify the behavior of a class.
• An interface in Java is a blueprint of a behavior.
• An interface would have only abstract methods.
• The variables in the interface are public, static, and final by default.
• This is what makes multiple inheritance possible in Java through interfaces.
• the abstract keyword applies only to classes and methods, indicating that
they cannot be instantiated directly and must be implemented.
• The job of the subclass to implement the code of all the methods of
interface, otherwise the subclass would become an abstract class. The key
word used for by a class to implement the interface is implements
Syntax for interfaces
interface <interfacename>
{
// declare constant fields by default final, public, and static.
// declare methods that abstract by default.
}
class <subclassname> implements <interfacename>
{
// variables and methods belonging to the subclass
// overriding methods of interface
}
Example:
interface Player
{
final int id = 10;
int move();
}
Note:
• We cannot instantiate the object of an interface.
• We need not to explicitly mention the variable as public, static and final, they are by
default.
• We need not to mention the methods as public and abstract explicitly, they are by
default. But while implementing in subclass we must declare as public.
• We can extend one interface into another. (use extends keyword)
• One or more interfaces can be implemented into single class (multiple inheritance).
Permitted access modifiers for
interfaces by default public
Relationship Between Class and
Interface
Task
• Write a java program to understand the extension of interfaces.
• Write a java program to understand multiple inheritance through
interfaces.
Understanding the terminology
• Abstract class it can contain methods with code and at least one
abstract method. Sub class must extend and define the code for the
abstract methods by overriding the abstract methods.
javac –d . Packdemo.java
• Execution:
java <package path>.<MainmethodClass>
java MyPack.Packdemo
Finding Packages and CLASSPATH
• Important Question: How does the Java Run-time system know
where to look for packages that you create?
• First, by default the Java run-time system uses the current working
directory as its stating point.
Example:
import java.util.Scanner;
import mypack.ClassName;
import mypack.*;
}
Anonymous Inner Class
public class OuterClass
{
public void createAnonymousInnerClass()
{
// Creating an anonymous inner class implementing Runnable
Runnable r = new Runnable() {
public void run()
{
System.out.println("Hello from Anonymous Inner Class");
}
};
new Thread(r).start();
}