Java:system.out.println 连接字符串中的某些内容(非常简单的问题)
我希望我的输出是 Candy[1]。 counterInt = 1
但我的编译器不接受此代码:
System.out.println("Candy["+counterInt"]");
我该怎么做才能让这个变量出现在字符串 Candy[] 中?
Candy[] 不是一个数组,而是一个字符串。
I want my output to be Candy[1].
counterInt = 1
But my compiler isn't taking this code:
System.out.println("Candy["+counterInt"]");
What can I do to have this variable appear within the string Candy[]?
Candy[] is not an array, it's a string.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(5)
您必须在
counterInt
之后放置一个+
:You must put a
+
aftercounterInt
:你应该有 System.out.println("Candy[" + counterInt + "].counterInt = " + counterInt);获得糖果[1]。计数器Int = 1;
you should have System.out.println("Candy[" + counterInt + "].counterInt = " + counterInt); to get Candy[1]. counterInt = 1;
CounterInt 后面缺少一个 +。
You are missing a + after CounterInt.