Java Array arrayPush(String[] array, String push)

Here you can find the source of arrayPush(String[] array, String push)

Description

array Push

License

Apache License

Declaration

public static String[] arrayPush(String[] array, String push) 

Method Source Code

//package com.java2s;
/*/*from  ww w.  j  a  v  a  2 s.  c o  m*/
 * Copyright 2016 JoinFaces.
 *
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

public class Main {
    public static String[] arrayPush(String[] array, String push) {
        String[] longer = new String[array.length + 1];
        System.arraycopy(array, 0, longer, 0, array.length);
        longer[array.length] = push;
        return longer;
    }
}

Related

  1. arrayOffloatAsCSStrings(float[] ar)
  2. arrayOffloatCoordsAsCSStrings(float[] ar)
  3. arrayPrefixEqual(byte[] a1, int off1, byte[] a2, int off2, int len)
  4. arrayPrint(T[] arr)
  5. arrayPrint(T[] x)
  6. arrayRangeEquals(byte[] a, int aOffset, byte[] b, int bOffset, int byteCount)
  7. arrayRepresentsProbability(double[] probs)
  8. arraySame(Object[] array1, Object[] array2)
  9. arraysConvert(String[] src, int column)