如何将可变参数函数参数转换为集合,例如 Set 或 List
在Java中,我们可以通过以下方式使用可变参数函数:
public Set packStrings(String...strings){
for (String str : strings){
//Do something on the str
}
//How to convert strings into a Set?
}
我的问题是,“字符串”的类型是什么?是字符串[]吗? 如何将“字符串”表示的字符串放入Java Collection(例如Set或List)中?
请各位指教。
谢谢&问候, 蔡威廉
In Java, we can use variadic function in the following way:
public Set packStrings(String...strings){
for (String str : strings){
//Do something on the str
}
//How to convert strings into a Set?
}
My question is, what is the type of "strings"? is it String[]?
How to put the string(s) denoted by the "strings" into Java Collection, such as Set or List?
Please kindly advise.
Thanks & regards,
William Choi
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
它是一个字符串数组,所以你可以这样做:
It's a string array, so you can do:
看看这个文档
Have a look at this Doc