Answers for "how panache handles abstract class in java"

1

how to use an abstract class in java

interface methods{
    public void hey();
    public void bye();
}

//unable to implement all the abstract methods in the interface so 
// the other class automatically becomes abstract
abstract class other implements methods{
    public void hey(){
        System.out.println("Hey");
    }
}

//able to implement all the methods so is not abstract
class scratch implements methods {
    public void hey(){
        System.out.println("Hey");
    }
    public void bye() {
        System.out.println("Hey");
    }
}
Posted by: Guest on January-08-2020
1

how to create an abstract class in java

abstract class scratch{
  
}
Posted by: Guest on January-08-2020
0

how panache handles abstract class in java

//interface declaration
interface Polygon_Shape {
    void calculateArea(int length, int breadth);
}
 
//implement the interface
class Rectangle implements Polygon_Shape {
    //implement the interface method
    public void calculateArea(int length, int breadth) {
        System.out.println("The area of the rectangle is " + (length * breadth));
    }
}
 
class Main {
    public static void main(String[] args) {
        Rectangle rect = new Rectangle();       //declare a class object
        rect.calculateArea(10, 20);             //call the method
    }
}
Posted by: Guest on December-20-2020

Code answers related to "how panache handles abstract class in java"

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language