Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

10
votes
2answers
634 views

Question on Java Generics Bounded Wildcard

Is there a difference between 1) <N extends Number> Collection<N> getThatCollection(Class<N> type) and 2) Collection<? extends Number> getThatCollection(Class<? extends ...
6
votes
4answers
425 views

In Java type arguments, does <? extends E> mean strictly subtypes only? or would E also suffice?

In Java type arguments, does mean strictly subtypes only? or would E also suffice?
5
votes
7answers
170 views

Is it possible to write a generic +1 method for numeric box types in Java?

This is NOT homework. Part 1 Is it possible to write a generic method, something like this: <T extends Number> T plusOne(T num) { return num + 1; // DOESN'T COMPILE! How to fix??? } ...
3
votes
2answers
128 views

Why are the bounds of type parameters ignored when using existential types in Scala?

What I mean is this: scala> class Bounded[T <: String](val t: T) defined class Bounded scala> val b: Bounded[_] = new Bounded("some string") b: Bounded[_] = Bounded@2b0a141e scala> b.t ...
2
votes
3answers
148 views

Generic type bounded by another generic

Suppose I have this: interface Shape {} interface Square extends Shape {} interface Circle extends Shape {} interface ShapeBuilder<S extends Shape> {} I want something like this: class ...
2
votes
2answers
168 views

How to iterate through a sequence of bounded types with Boost.Variant

struct A { std::string get_string(); }; struct B { int value; }; typedef boost::variant<A,B> var_types; std::vector<var_types> v; A a; B b; ...
2
votes
1answer
145 views

Combining bounded wildcards in Java

Is there anyway to use a bounded wildcard require a class implement more than one interface? In otherwords, something like... class Foo<S extends Comparable && Clonable> ...which ...