Skip to content

Instantly share code, notes, and snippets.

@TGITS
Created January 22, 2022 16:02
Show Gist options
  • Save TGITS/bad2a960a3f13916b42274fe6cf5be78 to your computer and use it in GitHub Desktop.
Save TGITS/bad2a960a3f13916b42274fe6cf5be78 to your computer and use it in GitHub Desktop.
Un exemple de record avec des types paramétrés et une méthode statique
public record Pair<U,V>(U first, V second) {
public static <U,V>Pair<U,V> of(U first, V second) {
return new Pair<>(first,second);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment