You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
import java.util.ArrayList;public class gsmTest { public static void main(String[] args) { ArrayList<mobilePhone> list = new ArrayList<mobilePhone>(); System.out.println(mobilePhone.getN95()); mobilePhone lol = new mobilePhone("borko"); list.add(lol); list.add(new mobilePhone("kircho",null,0.1)); for (mobilePhone s : list) { System.out.println(s.displayInfo()); } }}