我可以在主课上做这样的事情吗?
Scanner sc = new Scanner(System.in);
System.out.println("message 1");
int nbre1 = sc.nextInt();
sc.nextLine();
System.out.println("message 2");
int nbre2 = sc.nextInt();
sc.nextLine();
System.out.println("message 3");
int nbre3 = sc.nextInt();
sc.nextLine();
Obj o = new Obj(nbre1, nbre2, nbre3);
// print a message "do you want to create another object?"
如果是,我可以再次显示消息但不影响来自另一个对象的变量,例如 o2?