gpt4 book ai didi

java - 使用扫描仪拆分字符串

转载 作者:行者123 更新时间:2023-11-29 04:39:19 25 4
gpt4 key购买 nike

这就是我的工作原理,但希望以不同的方式实现。

System.out.print("Enter the car's Year, Make and Model: ");
String scyear = scan.nextLine();
String scmake = scan.nextLine();
String scmodel = scan.nextLine();
NewCar test = new NewCar(scyear, scmake, scmodel);

这就是我想要的:用户运行 Java 程序并询问:

Enter the car's Year, Make and Model: 

然后我输入:

2011 Honda Civic 

然后它将使用我输入的空格来分隔要正确放入构造函数的变量。它将它们从我输入的单个 1 行字符串中分离为 3 个单独的变量。

最佳答案

String myCarData[]=scan.nextLine().split(" ");
NewCar test=new NewCar(myCarData[0],myCarData[1],myCarData[2]);

关于java - 使用扫描仪拆分字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/39927638/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com