Skip to main content

Abstract in java

Introduction 

    A class define using abstract keyword is called Abstract class. Abstraction is a process of hiding the implementation and provide the functionality to user in other word it hide the details and show only functionality. The genreal example is SMS function in mobile. We dont know actualy how it work but we know how to use it. There are two way to archive abstraction.

  1. Abstract class
  2. Interface


1. Abstract Class:

    A class define using abstract keyword is called Abstract class. It have abstract and non-abstract both the method. It need to be extend and methods to be implemented. It cannot be instantiated.

Main Points to remember:

👉 An abstract class must be declared with an abstract keyword.

👉 It can have abstract and non-abstract methods.

👉 It cannot be instantiated.

👉 It can have constructors and static methods also.

👉 It can have final methods which will force the subclass not to change the body of the method.

    Abstract Methods:

A method which is declared as abstract and does not have implementation is known as an abstract method.

Syntax of abstract method:

abstract void printStatus();    //no method body and abstract  

Example od abstract Class:

abstract class Bike{  

  abstract void run();  

}  

class Honda4 extends Bike{  

void run(){System.out.println("running safely");}  

public static void main(String args[]){  

 Bike obj = new Honda4();  

 obj.run();  

}  

}  

OUTPUT:

running safely

Comments

Popular posts from this blog

Decision Making and Branching Statements / Control Statements

 Introduction     Java is a set of statements which executed sequentially in the order in which they appear. This will happen when option or repetitions of certains are not necessary. However, We have a number of situation, where we may have to change the order of execution of statement on bases of certain conditions. This involves a kind of dicision making to see the particular condition occured or not and the direction of execution will execute according to it.     When program braks the sequential flow and jump on the another part of code then it's called branching . When branching is on particular condition then it's called conditional branching . If branches executes without any particular conditions then it's call unconditional branching .     Java supports such decision making capabilities and supports following statements known as Control statement or Decision making statement .     if statements     switch statement   ...

Jump Statements in java

    Introductions       Loopes perform a set of operations repeatedly until the control variable fails to satisfy the test condition. But in some times we need to skip some of the part of loop then we use the jump statements . For breaking the loop we use continue and break statement . Continue Statement:     When the continue statement called, it will break or stop the current itteration of loop on sameline and start the new iteration. Format of this statement is below:          continue; Brak Statement: After call this statement in the body of loop, it will sop or break the loop on current loop on same line and control goes to the next line after that loop. Format is below:     break; We mostly use this statement in while, do, and for loop concept.