For instance, I have:
ArrayList<Integer> intList = new ArrayList<>(Arrays.asList(0,1,2,3));
And I need to get eventually this:
public static final int CATEGORY = 0 | 1 | 2 | 3;
How can I pass these numbers to int like that?
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…