Printing the stack values in Java(在 Java 中打印堆栈值)
问题描述
在 Java 中,我想打印 Stack 的内容.toString()
方法将它们打印在用逗号分隔的方括号中:[foo, bar, baz]
.
In Java, I want to print the contents of a Stack. The toString()
method prints them encased in square brackets delimited by commas: [foo, bar, baz]
.
如何摆脱它们并只打印变量?
How do I get rid of them and print the variables only?
到目前为止我的代码:
Stack myStack = new Stack ();
for(int j=0; j<arrayForVar.length; j++) {
if(arrayForVar[j][1] != null) {
System.out.printf("%s
", arrayForVar[j][1] + "
");
myStack.push(arrayForVar[j][1]);
}
}
System.out.printf("%s
", myStack.toString());
这个答案对我有用:
在 Stack 上使用 toString
方法,并使用 replaceAll
方法将方括号的所有实例替换为空白字符串.像这样:
Use the toString
method on the Stack, and use replaceAll
method to replace all instances of square brackets with blankstring. Like this:
System.out.print(
myStack.toString().replaceAll("\[", "").replaceAll("]", ""));
推荐答案
有一个解决方法.
你可以把它转换成一个数组,然后用 Arrays.toString(Object[])
:
You could convert it to an array and then print that out with Arrays.toString(Object[])
:
System.out.println(Arrays.toString(myStack.toArray()));
这篇关于在 Java 中打印堆栈值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:在 Java 中打印堆栈值
基础教程推荐
- 如何在不安装整个 WTP 包的情况下将 Tomcat 8 添加到 Eclipse Kepler 2022-01-01
- 如何使用 Eclipse 检查调试符号状态? 2022-01-01
- 在螺旋中写一个字符串 2022-01-01
- 如何对 HashSet 进行排序? 2022-01-01
- 如何使用 Stream 在集合中拆分奇数和偶数以及两者的总和 2022-01-01
- 如何强制对超级方法进行多态调用? 2022-01-01
- 由于对所需库 rt.jar 的限制,对类的访问限制? 2022-01-01
- Spring Boot Freemarker从2.2.0升级失败 2022-01-01
- 首次使用 Hadoop,MapReduce Job 不运行 Reduce Phase 2022-01-01
- Java 中保存最后 N 个元素的大小受限队列 2022-01-01