Question: Based on the code above.... please fill out the following table below: -Their is 3 methods and i wrote them -for the characteristic choose any

Based on the code above.... please fill out the following table below:
-Their is 3 methods and i wrote them
-for the characteristic choose any possible partition characteristic for each method...their can be more than one so choose any

* This class maintains a unique set of objects. This class defines any two * objects to be equal if their "tostring()" method returns the same * String regardless of if the 0bjects themselves are the same Class or not. * This class also can contain a single null, where if a null is * present it would evaluate as equal as defined above to another null. / ublic class weirdSet private 0bject[] internalSet; / Constructs an empty set / public WeirdSet( ) // Some code would eventually go here.... \} / * If the passed0bj is not already in the set as defined above, add it to the set and return true, otherwise return false and the set is not modified. / public boolean add(0bject passed0bj) // Some code would eventually go here.... \} / Returns an 0bject array the length of the number of elements in this set that contains the elements held in this set * sorted alphabetically by their "tostring()" result. * If the set contains null, it would appear first before any other obje / public Object[] toArray( ) \{ // Some code would eventually go here... \} AddWeiraset
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
