java 不定长参数实现原理

public static void main(String[] args) { test("a", "b", "c"); } public static void test(String... strs) { System.out.println(strs.getClass().getSimpleName()); System.o
相关文章
相关标签/搜索