The short answer is: You can't. In an int
field, you can only store a single integer. The |
you are using is a bitwise OR in Java. This means that 0 | 1 | 2 | 3
results in the bitwise OR of 00, 01, 10 and 11
, being 11
. If you want to store multiple integers, then the most common options to store them are inside an array (int[]
) or a List
.
与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…