Search:

Type: Posts; User: Kifli

Search: Search took 0.11 seconds.

  1. Replies
    1
    Views
    1,397

    add a default constructor in abstract class

    I have a java code :


    abstract class Fish{
    abstract void Display();
    }
    abstract class FreshWaterFish extends Fish{
    }
    abstract class...
  2. Interface Inheritance (Java Program): meaning of each line of the program?

    Hi guys. I'm just preparing for my exam. help me to explain every line of this program:


    interface J {
    int j = 200;
    int j1();
    }
    interface K {
    double k1();
    }
Results 1 to 2 of 2