search
HomeJavaNever-ending loop for user-populated array list

Question content

I need to write a method to get the car specifications entered by the user and add them to an arraylist. This needs to accept any number of specifications the user wants to enter, including none. This is my first post here, apologies for any bad grammar.

public static arraylist gettrim() {

scanner t = new scanner(system.in);
system.out.println("enter car trim");
arraylist<string> trim = new arraylist<>();

while (t.hasnext()) {
trim.add(t.next());
}

return trim;

}

I think this condition will return false if a space is entered. Such continuous iteration can only be exited manually.

I also tried it

if (t.hasNext()) {
trim.add(t.next());
}

else {
t.close();
}

This iterates once and returns the arraylist, but I need to be able to enter more. Changing the if or while condition to hasnextline() gives the same result, here I am using hasnext() because the car trim level has specific formatting expectations. I don't understand why hasnext() doesn't return false when no input is given.


Correct answer


It..No.

Think about it. How does a computer differentiate between a user who is thinking about what to type and may leave it until after lunch, and a user who is "done"? Fire up the webcam and do some AI analysis and see if the user looks like they've finished typing?

system.in is not the keyboard. It is the "standard input of the jvm process", default, and at least, if you start your java application from the command line, set it to read from the keyboard. It doesn’t have to be:

java -jar myapp.jar </some/path/to/some/file.txt

Now system.in is read from this file. The process cannot be read from the keyboard.

java -jar myapp.jar </dev/barcodescanner1

Now, presumably whenever you scan a barcode, the java application will receive the barcode just as if you entered the digits of the barcode and pressed "Enter" 1.

This depends on the "source of this input" to the "end". The file ends when the end of the file is reached.

It is impossible for the keyboard to "end" - therefore, .hasnext() cannot return false.

blank

You talked about "entering spaces" in your comments.

Then you don’t understand scanner. You are in good company; this is probably the most misunderstood thing. If we look at the number of questions flooding stackoverflow, this is indeed the case.

scanner has nothing to do with the keyboard.

The scanner simply takes any text input source and splits it into chunks. Blocks are called "tokens", and "tokens" are defined by "all text between delimiters". Delimiters are in turn defined by regular expressions, the regular expression used by default is

\s . For example, any amount of white space.

therefore:

public static void main(string[] args) {
  scanner s = new scanner(system.in);
  while (true) {
    system.out.println("token: ≥" + s.next()) + "≤");
  }
}

If you run this command and type in the command line:

hello world!, then press enter and type my name is lajos, you will see:

token: ≥hello≤
token: ≥world!≤
token: ≥my≤
token: ≥name≤
token: ≥is≤
token: ≥lajos≤

Things about the scanner:

It is not possible to register or otherwise obtain the content of anything under "separator". You can't ask the scanner: How many blanks are there?

You also can't ask: "stop" when you encounter a space. No, spaces just separate one token from the next. For scanners, there is no

any difference between pressing the enter key and pressing the space bar and then the enter key. This is all "1 or more whitespace characters" so are interchangeable and cannot be detected since this is about delimiters.

You may not want to use a scanner at all. system.in itself can certainly differentiate it.

Solution 1

A common strategy is to mention some magic word that means "done" in the prompt. For example:

static void main(string[] args) throws exception {
  var s = new scanner(system.in);
  system.out.println("welcome to the fruit stand! enter the fruit you'd like to buy, one at a time:");

  var basket = new arraylist<string>();
  while (true) {
    system.out.print("fruit (type 'done' when done): ");
    string fruit = s.next();
    if (fruit.equalsignorecase("done")) break;
    basket.add(fruit);
  }

  system.out.println("here's your basket: " + basket);
}

Solution 2

Trench Scanner. Or at least, drop everything and just use

nextline, which interacts very with all the other methods it has - choose one and only one (nextline, or Everything except nextline):

static void main(string[] args) throws exception {
  var s = new scanner(system.in);
  system.out.println("welcome to the fruit stand! enter the fruit you'd like to buy, one at a time:");

  var basket = new arraylist<string>();
  while (true) {
    system.out.print("fruit (enter when done): ");
    string fruit = s.nextline();
    if (fruit.isempty()) break;
    basket.add(fruit);
  }

  system.out.println("here's your basket: " + basket);
}

[1] In fact, most barcode scanners look and act like keyboards, and have no device because it does not exist in

/dev/ and cannot be piped into such a process. But, as an example, it works.

You can try this:

public static ArrayList getTrim() {

Scanner t = new Scanner(System.in);
System.out.println("Enter car trim");
ArrayList<String> trim = new ArrayList<>();

while (t.hasNext()) {

if (!t.next().trim().equals("") {

trim.add(t.next());
      }

else {
t.close();
      }
   }

return trim;

}

The above is the detailed content of Never-ending loop for user-populated array list. For more information, please follow other related articles on the PHP Chinese website!

Statement
This article is reproduced at:stackoverflow. If there is any infringement, please contact admin@php.cn delete
Linux下查看内存使用情况方法总结Linux下查看内存使用情况方法总结Feb 05, 2024 am 11:45 AM

Q:我有一个问题,我想要监视Linux系统的内存使用情况。在Linux下有哪些可用的视图或命令行工具可以使用呢?A:在Linux系统中,有多种方法可以监视内存使用情况。下面是一些通过视图工具或命令行来查看内存使用情况的方法。/proc/meminfo:最简单的方法是查看/proc/meminfo文件。这个虚拟文件会动态更新,并提供了关于内存使用情况的详细信息。它列出了各种内存指标,可以满足你对内存使用情况的大部分需求。另外,你还可以通过/proc//statm和/proc//status来查看进

​揭秘NVIDIA大模型推理框架:TensorRT-LLM​揭秘NVIDIA大模型推理框架:TensorRT-LLMFeb 01, 2024 pm 05:24 PM

一、TensorRT-LLM的产品定位TensorRT-LLM是NVIDIA为大型语言模型(LLM)开发的可扩展推理方案。它基于TensorRT深度学习编译框架构建、编译和执行计算图,并借鉴了FastTransformer中高效的Kernels实现。此外,它还利用NCCL实现设备间的通信。开发者可以根据技术发展和需求差异,定制算子以满足特定需求,例如基于cutlass开发定制的GEMM。TensorRT-LLM是NVIDIA官方推理方案,致力于提供高性能并不断完善其实用性。TensorRT-LL

Linux 上的最佳白板应用程序Linux 上的最佳白板应用程序Feb 05, 2024 pm 12:48 PM

“我们将介绍几款适用于Linux系统的白板应用程序,相信这些信息对您会非常有帮助。请继续阅读!”一般来说,数字白板是一种用于大型互动显示面板的工具,常见的设备类型包括平板电脑、大屏手机、触控笔记本和表面显示设备等。当教师使用白板时,您可以使用触控笔、手写笔、手指甚至鼠标在设备屏幕上进行绘画、书写或操作元素。这意味着您可以在白板上拖动、点击、删除和绘画,就像在纸上使用笔一样。然而,要实现这一切,需要有一款软件来支持这些功能,并实现触控和显示之间的精细协调。目前市面上有许多商业应用可以完成这项工作。

ZR币升值空间大吗? ZR币在哪里购买交易?ZR币升值空间大吗? ZR币在哪里购买交易?Feb 01, 2024 pm 08:09 PM

ZRX(0x)是一个基于以太坊区块链的开放协议,用于实现分布式交易和去中心化交易所(DEX)功能。作为0x协议的原生代币,ZRX可用于支付交易费用、治理协议变更和获取平台优惠。1.ZRX币升值空间展望:从技术角度来看,ZRX作为0x协议的核心代币,在去中心化交易所的应用逐渐增多,市场对其认可度也在增加。以下是几个关键因素,有助于提升ZRX币的价值空间:市场需求潜力大、社区活跃度高、开发者生态繁荣等。这些因素共同促进了ZRX的广泛应用和使用,进而推动了其市场价格的上升。市场需求的增长潜力,意味着更

手把手教你构建linux rootfs手把手教你构建linux rootfsFeb 05, 2024 pm 03:51 PM

busybox概述众所周知,在Linux环境下,一切皆文件,文件可以表示一切。而文件系统则是这些普通组件的集合。在嵌入式领域中,常常使用基于busybox构建的rootfs来构建文件系统。busybox诞生至今已有近20年的历史,如今已成为嵌入式行业中主流的rootfs构建工具。busybox的代码是完全开源的。你可以进入官方网站,点击”GetBusyBox”下面的”DownloadSource”进入源码下载界面。“官方网站链接:https://busybox.net/”2.busybox的配置

BOSS直聘怎么创建多个简历BOSS直聘怎么创建多个简历Feb 05, 2024 pm 02:18 PM

BOSS直聘怎么创建多个简历?BOSS直聘是很多小伙伴找工作的一大招聘平台,为用户们提供了非常多便利的求职服务。各位在使用BOSS直聘的时候,可以创建多个不同的简历,以便投送到不同的工作岗位上,获取到更高成功率的求职操作,各位如果对此感兴趣的话,就随小编一起来看看BOSS直聘双简历创建教程吧。BOSS直聘怎么创建多个简历1.登录Boss直聘:在您的电脑或手机上,登录您的Boss直聘账户。2.进入简历管理:在Boss直聘首页,点击“简历管理”,进入简历管理页面。3.创建新简历:在简历管理页面,点击

Linux字节对齐的那些事Linux字节对齐的那些事Feb 05, 2024 am 11:06 AM

最近,我正在进行一个项目,遇到了一个问题。在ARM上运行的ThreadX与DSP通信时采用了消息队列的方式传递消息(最终实现使用了中断和共享内存的方法)。然而,在实际的操作过程中,发现ThreadX经常崩溃。经过排查,发现问题出在传递消息的结构体没有考虑字节对齐的问题上。我想顺便整理一下关于C语言中字节对齐的问题,并与大家分享。一、概念字节对齐与数据在内存中的位置有关。如果一个变量的内存地址恰好是它长度的整数倍,那么它就被称为自然对齐。例如,在32位CPU下,假设一个整型变量的地址为0x0000

幻兽帕鲁开局攻略幻兽帕鲁开局攻略Feb 01, 2024 pm 05:36 PM

幻兽帕鲁游戏开局就可以拿三个宝箱和两个宠物蛋,拿完以后就可以开始建家了,建家的地址一定要选好,要不然开局会发现自己的家没有了,然后就是捕捉一直适合自己的帕鲁,作为自己的伙伴或者打工人即可。

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

VSCode Windows 64-bit Download

VSCode Windows 64-bit Download

A free and powerful IDE editor launched by Microsoft

ZendStudio 13.5.1 Mac

ZendStudio 13.5.1 Mac

Powerful PHP integrated development environment

MantisBT

MantisBT

Mantis is an easy-to-deploy web-based defect tracking tool designed to aid in product defect tracking. It requires PHP, MySQL and a web server. Check out our demo and hosting services.

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use