Answers for "adding item to array java"

3

java array add element

// A better solution would be to use an ArrayList which can grow as you need it. 
// The method ArrayList.toArray( T[] a ) 
// gives you back your array if you need it in this form.

List<String> where = new ArrayList<String>();
where.add(element);
where.add(element);

// If you need to convert it to a simple array...

String[] simpleArray = new String[ where.size() ];
where.toArray( simpleArray );
Posted by: Guest on September-30-2020
0

java add values to array

// If you read array of unknown length, from console
// and you want to put numbers into array of fixed length
long[] array = Arrays.stream(scanner.nextLine().split(" "))
                .mapToLong(Long::parseLong)
                .toArray();
Posted by: Guest on December-28-2021

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language