show/hide this revision's text 5 Changed the text to match the updated code (c1->b1)

Joint union in type parameter variance:

public class Baz<T extends Foo & Bar> {}

For example, if you wanted to take a parameter that's both Comparable and a Collection:

public static <A, B extends Collection<A> & Comparable<B>>
boolean foo(B b1, B b2, A a) {
   return (b1.compareTo(b2) == 0) || b1.contains(a) || b2.contains(a);
}

This contrived method returns true if the two given collections are equal or if either one of them contains the given element, otherwise false. The point to notice is that you can invoke methods of both Comparable and Collection on the arguments c1 b1 and c2b2.

show/hide this revision's text 4 deleted 1 characters in body

Joint union in type parameter variance:

public class Baz<T extends Foo & Bar> {}

For example, if you wanted to take a parameter that's both Comparable and a Collection:

public static <A, B extends Collection<A> && & Comparable<B>>
boolean foo(B b1, B b2, A a) {
   return (b1.compareTo(b2) == 0) || b1.contains(a) || b2.contains(a);
}

This contrived method returns true if the two given collections are equal or if either one of them contains the given element, otherwise false. The point to notice is that you can invoke methods of both Comparable and Collection on the arguments c1 and c2.

show/hide this revision's text 3 deleted 31 characters in body

Joint union in type parameter variance:

public class Baz<T extends Foo & Bar> {}

For example, if you wanted to take a parameter that's both Comparable and a Collection:

public static <A, B extends Collection<A>, C extends Collection<A> && Comparable<B>>
boolean foo(C c1foo(B b1, C c2B b2, A a) {
   return (c1.compareTo(c2) b1.compareTo(b2) == 0) || c1.contains(ab1.contains(a) || c2.contains(a)b2.contains(a);
}

This contrived method returns true if the two given collections are equal or if either one of them contains the given element, otherwise false. The point to notice is that you can invoke methods of both Comparable and Collection on the arguments c1 and c2.

show/hide this revision's text 2 added 495 characters in body
    Post Made Community Wiki by Community
show/hide this revision's text 1