用整数填充(树)集的最短方法?
如果我想创建一个(树)集并用 2000 个整数填充它。从 0 开始,然后添加 1,2,3,4...2000。最好的方法是什么?
我可以用 add(i);i++; 做
Set set = new TreeSet<Integer>();
set.add(0);
set.add(1);
set.add(2);
//...
或做一段时间
但有没有更简单/更短的方法呢?
谢谢你!
if I want to make a (Tree)Set and fill it with 2000 Integers. To start with 0 then add 1,2,3,4...2000. Whats the best way?
I could do
Set set = new TreeSet<Integer>();
set.add(0);
set.add(1);
set.add(2);
//...
or make a while with add(i);i++;
But is there a easier/shorter way?
Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
事实并非如此,Java 中没有 bob=[0...2000] 快捷方式。
Not really, there are no bob=[0...2000] shortcuts in Java.