Skip to content

Instantly share code, notes, and snippets.

@czfshine
Created August 28, 2019 02:16
Show Gist options
  • Save czfshine/3f4312f96e6b8acc25d8eb471e785b9c to your computer and use it in GitHub Desktop.
Save czfshine/3f4312f96e6b8acc25d8eb471e785b9c to your computer and use it in GitHub Desktop.
java 数组泛型
<T,U extends T> void a(T t,U u){};
void c(){
Integer b[] ={1,2,3};
a(1,b);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment