Search:

Type: Posts; User: urpalshu

Search: Search took 0.07 seconds.

  1. Replies
    1
    Views
    1,729

    adding an object to an arrayList

    Hello:

    I have an interface called Taxable,


    interface Taxable
    {
    public String getName();
    public float getIncome();
    public double getTax();
  2. Replies
    2
    Views
    1,738

    [SOLVED] Cloneable interface

    Question:
    The purpose of Cloneable interface is to tell JVM that this class is eligible for cloning. Note that the class Object doesn't implement , hence if you call the Object class "clone()"...
  3. Replies
    4
    Views
    2,806

    ArrayList (Inheritance)

    I am new to Java, I am woring on learning inheritance.

    I am creating an abstract class called Thing.

    I have to put this requirement in, Please could somebody help me with Syntax

    Thing will...
Results 1 to 3 of 3