public class BoxUsers // demonstrates using the Box generic class { public static void main(String[] args) { Box a=new Box<>("Hi there"); Box b=new Box<>(12); Box c=new Box<>(11.5); System.out.println(a + " " + b + " " + c); } }