Search:

Type: Posts; User: indla

Search: Search took 0.11 seconds.

  1. Re: How do you make a list that contains another list?

    ArrayList<ArrayList<Integer>> listofLists=new ArrayList<ArrayList<Integer>>();

    ArrayList<Integer> singleLists=new ArrayList<Integer>();

    singleLists.add(1);
    singleLists.add(2);
    ...
  2. Re: Getting primitive variable values from another class

    Hii,
    1.define the variable with protected or public in Menu.java.

    2.Extend the Menu.java class in NumScreen.java.
    3.use what ever variables u want from Menu.java by super.variable in NumScreen....
  3. Replies
    1
    Views
    1,269

    Re: Abstract Classes?

    1Interface is the concept of encapsulation
    – The implementation can change without affecting the caller of the interface
    – The caller does not need the implementation at the compile time
    ● It...
Results 1 to 3 of 3