How can I pass a primitive type by reference in java? For instance, how do I make an int
passed to a method modifiable?
相关问题
- Delete Messages from a Topic in Apache Kafka
- Jackson Deserialization not calling deserialize on
- How to maintain order of key-value in DataFrame sa
- StackExchange API - Deserialize Date in JSON Respo
- Difference between Types.INTEGER and Types.NULL in
That's not possible in Java
Pass an object that has that value as a field.