Answers for "array.size() in java"

2

how to increase the size of array in java

// Use this function
public void increaseSize() {
   String[] temp = new String[original.length + 1];
   
   for (int i = 0; i < original.length; i++){
      temp[i] = original[i];
   }
   original = temp;
}
Posted by: Guest on March-27-2022
6

How to find the length of an array in java

class Main {
  public static void main(String[] args) {
    // Creating an array called x.
    String[] x = new String[]{"This", "Should", "return", "4"};
    // "x.length" finds the length of the array "x".
    System.out.println(x.length);
    // returns 4
  }
}
Posted by: Guest on February-22-2020

Code answers related to "Java"

Java Answers by Framework

Browse Popular Code Answers by Language