public class Example { public static void main (String args[]) { StoreVal store = new StoreVal(); store.setValue(9); int i = store.getValuePlus(2); double d = store.getValuePlus(3.6); } }