lab6 some minor fixes

This commit is contained in:
Zakharov_Rostislav 2023-12-22 20:28:13 +04:00
parent a8d164c663
commit 99da8dad3d

View File

@ -4,6 +4,9 @@ import java.util.ArrayList;
public class SetGeneric<T extends Object>{
private final ArrayList<T> places;
public int getCount() {
return places.size();
}
private final int maxCount;
public SetGeneric(int count){
maxCount = count;
@ -26,9 +29,6 @@ public class SetGeneric<T extends Object>{
places.remove(position);
return true;
}
public int getCount() {
return places.size();
}
public T get(int position){
if(!(position >= 0 && position < places.size()))
return null;