Search:

Type: Posts; User: yel_hiei

Search: Search took 0.07 seconds.

  1. Replies
    12
    Views
    3,947

    Re: Need Help on the Interface Function

    Hi, I'm quite confuse with your instructions (so sorry, I'm quite new to Java)... Can you show me the simplest way to implement the Set interface below: Any method would do...
  2. Replies
    12
    Views
    3,947

    Re: Need Help on the Interface Function

    I wanted to add an array. Can you check on my codes below. I'm not quite sure how to program the add and union functions. Thanks much!
  3. Replies
    12
    Views
    3,947

    Re: Need Help on the Interface Function

    Thanks so much for your help. A new method has been added to the Set.java interface, public void add.

    Set.java



    The public void add function is suppose to add values to a Set but I'm not...
  4. Replies
    12
    Views
    3,947

    Re: Need Help on the Interface Function

    Hi Norm thanks for noticing that. That was a typo error on my part. This is a java file, I need to know how to add values on Set A and Set B so I can implement a union function. The problem is Set is...
  5. Replies
    12
    Views
    3,947

    Need Help on the Interface Function

    Hi can someone help me on this. I have this code below:

    Set.java

    public interface Set{
    public Set union (Set A,Set B)
    }

    MySet.java
Results 1 to 5 of 7