Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
这个问题很简单,但我找不到答案。
我正在使用 j2me。我有一个包含 9 个元素的整数数组。经过所有的计算,现在我想打印它或以表格形式显示它。
它类似于 Integer.toString(); 与数组一起使用?我知道我可以使用循环,但我想知道它是否是一种更快的方法。
使用循环,但不要使用 String + 运算符。使用 StringBuffer.append()。