简体   繁体   English

如何为不同类型的对象创建通用代码

[英]How to create generic code for objects of different types

I have an entity that has as children several lists of objects that, although they have different classes, all have the order attribute, in several parts I end up with repeated code, for example in one part I need to order the lists by that attribute and I cannot simplify because they are of different type.我有一个实体,它有几个对象列表作为子对象,虽然它们有不同的类,但都具有 order 属性,在几个部分我最终得到重复的代码,例如在一部分中我需要按该属性对列表进行排序我无法简化,因为它们属于不同类型。

The relevant part of the entity is this:实体的相关部分是这样的:

contenido={
  "educaciones":[
    {
      ...
      "orden":0
    },{
      ...
      "orden":1
    }
  ],
  "experiencias":[
    {
      ...
      "orden":0
    },{
      ...
      "orden":1
    }
  ]
},
...

The code I would like to simplify:我想简化的代码:

if(tipo.equals("experiencias")){
   List<Experiencia> iterable=contenido.getExperiencias();
   for(int i = 0; i < iterable.size(); i++){
      iterable.get(i).setOrden( orden.get(i) ); //orden = [0,3,5,...]
   }
   iterable.sort((it1,it2)-> it1.getOrden().compareTo(it2.getOrden()));
}else if(tipo.equals("educaciones")){
   List<Educacion> iterable=contenido.getEducaciones();
   for(int i = 0; i < iterable.size(); i++){
      iterable.get(i).setOrden( orden.get(i) );
   }
   iterable.sort((it1,it2)-> it1.getOrden().compareTo(it2.getOrden()));
}else if...

Is there a way to create a code that is more generic and supports different objects?有没有办法创建更通用且支持不同对象的代码?

you can try to create a List<?> - list with a dynamic type outside of your if else block and move your duplicated code outside too and at the end of the if else block.您可以尝试在if else块之外创建一个List<?> - 具有动态类型的列表,并将重复的代码也移到 if if else块的末尾。 In addition, you have to create a common class or some interface for your classes, which holds all the common field you needed此外,您必须为您的类创建一个通用的 class 或某个接口,它包含您需要的所有通用字段

public class Main {

public static class Something {
    private Integer sth;
    public Integer getSth() {
        return sth;
    }
    public void setSth(Integer sth) {
        this.sth = sth;
    }
}
public static class ThisClass extends Something {
    private Integer num;
    public ThisClass(Integer num) {
        this.num = num;
    }
    public Integer getNum() {
        return num;
    }
    public void setNum(Integer num) {
        this.num = num;
    }
}
public static class ThatClass extends Something {
    private String str;
    public ThatClass(String str) {
        this.str = str;
    }
    public String getStr() {
        return str;
    }
    public void setNum(String str) {
        this.str = str;
    }
    
}

public static List<? extends Something> sortList(Class<?> itemClass, List<? extends Something> list) 
throws Exception {
    for(int i = 0; i < list.size(); i++){
        list.get(i).setSth(i);
    }
    list.sort((it1,it2)-> it1.getSth().compareTo(it2.getSth()));
    return list;
}

public static void main(String[] args) {
    System.out.println("Hello World");
    List<? extends Something> someList = new ArrayList<>();
    boolean check = true;
    if(check) {
        someList = Arrays.asList(new ThisClass(1),new ThisClass(1),new ThisClass(1),new ThisClass(1));
    } else {
        someList = Arrays.asList(new ThatClass("a"), new ThatClass("a"),new ThatClass("a"),new ThatClass("a"));
    }
    try {
        someList = sortList(ThisClass.class, someList);
        for(int i = 0; i < someList.size(); i++){
            System.out.println(someList.get(i).getSth());
        }   
    } catch (Exception e) {
        e.printStackTrace();
    }
    
}

}

Create an interface for the methods that are common between all you classes:为所有类之间通用的方法创建一个接口:

interface HasOrden {
  int getOrden();
  void setOrden(int i);
}

Each of your classes needs to implement HasOrden .您的每个类都需要实现HasOrden

Then you can declare sortOrden function:然后你可以声明sortOrden function:

import java.util.ArrayList;
import java.util.List;

interface HasOrden {
    int getOrden();
    void setOrden(int i);
}
class Experiencia implements HasOrden {
    private final String name;
    int orden;

    public Experiencia(String name) {
        this.name = name;
    }

    @Override
    public int getOrden() {
        return orden;
    }

    @Override
    public void setOrden(int i) {
        orden = i;
    }

    public String toString() {
        return name;
    }
}
public class Eg {
    static void sortOrden(List<? extends HasOrden> l, List<Integer> order) {
        if (l.size() != order.size()) {
            throw new RuntimeException("length mismatch");
        }
        for (int i = 0; i < l.size(); i++) {
            l.get(i).setOrden(order.get(i));
        }
        l.sort((it1,it2)-> Integer.compare(it1.getOrden(), it2.getOrden()));
    }
    public static void main(String[] args) {
        List<Experiencia> items = new ArrayList<>(List.of(new Experiencia("a"), new Experiencia("b")));
        List<Integer> order = List.of(2,1);
        sortOrden(items, order);
        System.out.println(items);
    }
}

You can call sortOrden on any list of HasOrden instances.您可以对任何HasOrden实例列表调用sortOrden

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM