传递参数

发布于 2024-11-07 00:57:32 字数 276 浏览 0 评论 0原文

如何在 java lang 中从用户传递参数。

例如:

我正在调用方法 enQueue(Object o)

我希望用户为 o 输入一个值

我尝试过 在测试类中

Object o = read.nextLine();
q.enQueue(o);

它只调用方法而不传递任何参数

How to pass a parameter from the user in java lang.

for example:

I'm calling the method enQueue(Object o)

I want the user to enter a value for o

I tried
in the test class

Object o = read.nextLine();
q.enQueue(o);

it only call the method without passing any parameter

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

养猫人 2024-11-14 00:57:32

这可能是因为 read.nextLine() 没有返回任何内容 (null) 或空字符串 ""

通过使用调试器或打印来确保返回值是什么:

Object o = read.nextLine();
System.out.println("I got: " + o);

此外,如果您仅在队列上使用 java.lang.String 实例,我建议您使用泛型:

Queue<String> q = new LinkedList<String>();
String s = read.nextLine();
q.enQueue(s);

It's probably because read.nextLine() is returning nothing (null) or an empty string "".

Make sure of what's the return value by using the debugger or printing it:

Object o = read.nextLine();
System.out.println("I got: " + o);

Also, if you are only using instances of java.lang.String on your queue, I would recommend you using generics:

Queue<String> q = new LinkedList<String>();
String s = read.nextLine();
q.enQueue(s);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文