在Java中,我們可以通過以下方式使用可變參數函數: public Set packStrings(String...strings){
for (String str : strings){
//Do something on the str
}
//How to convert strings into a Set?
}
我的問題是,什麼是「串
可能重複: Is it possible to solve the 「A generic array of T is created for a varargs parameter」 compiler warning? 考慮這個給出: interface A<T> { /*...*/ }
interface B<T> extends A<T> { /*...*/ }
class C { /*.