Generics’ Bounded Wild Cards in Java <font size=-2><a href=http://www.lifemichael.com/en/acronyms/ target=_blank>PRO</a></font>

When using a bounded wild card we can limit the parametric type as if we were saying that it can be any type as long as it extends or implements a specific type we specify. package il.ac.hit.samples; import java.util.Iterator; import java.util.Vector; public class BoundedWildCardSample { public static double calculateTotal(Vector<? extends Shape> vicy) { double sum […]