Answered step by step
Verified Expert Solution
Question
1 Approved Answer
implement a simple class that represent a mathematical set with only one meaningful operation add package lab1; public class Set { private String items; private
implement a simple class that represent a mathematical set with only one meaningful operation add
package lab1;
public class Set {
private String items;
private int size;
private int capacity;
public Set (int capacity){
}
public int size(){
this.size=size;
return size;
}
public int capacity(){
this.capacity = capacity;
return capacity;
}
public String toString(){
return null;
}
public boolean add(String thing){
if(thing == itmes){
return true;
}
else
{
return false;
}
}
}
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started