- 01
- 02
- 03
- 04
- 05
- 06
- 07
- 08
- 09
- 10
- 11
- 12
- 13
- 14
- 15
- 16
- 17
- 18
- 19
- 20
- 21
- 22
- 23
- 24
- 25
- 26
- 27
- 28
- 29
- 30
- 31
public static void main(String[] args) {
Map<String, ClassLink<?>> children = new HashMap<String, ClassLink<?>>();
children.put("test1", new ClassLink<Dall>());
children.put("test2", new ClassLink<Son>());
String test = children.get("test1").classObjectGenerator().getName();
test.toString();
}
static class ClassLink<X extends ChildBase> {
public X classObjectGenerator() {
return (X) new Dall();
};
}
static class Dall implements ChildBase {
public String getName() {
return "Ivan";
}
}
static class Son implements ChildBase {
public String getName() {
return "Vera";
}
}
interface ChildBase {
String getName();
}
Фабрика. Загнать в map легковесный класс - создатель, а когда понадобится - создать объект.
dos_ 26.11.2014 02:27 # +4
bormand 26.11.2014 10:23 # +1
bormand 26.11.2014 06:41 # 0
chtulhu 26.11.2014 08:24 # 0
жабогенерики - это не крестошаблоны и в классе нельзя узнать о типе. Фабрики как бы и нет
bormand 26.11.2014 09:37 # 0
bormand 26.11.2014 10:25 # 0
Анонимус 26.11.2014 17:33 # 0
фу!
bormand 26.11.2014 18:40 # 0
Анонимус 26.11.2014 18:45 # 0
Анонимус 26.11.2014 17:34 # 0
Не надо в джаве так делать (ну только если ты не инфрасткруктурный код типа спринга пишешь)