+ 2
How to remove a particular element in an array?
Is there any remove function?
1 Antwort
+ 7
Array is immutable by nature, perhaps you can look into ArrayList. 😉
https://docs.oracle.com/javase/8/docs/api/java/util/ArrayList.html
Is there any remove function?