往數組的指定位置插入一個元素


/**
 * 用arraycopy()實現往數組指定位置插入一個指定的元素
 * @author HQ
 * @e-mail ahmashq95@gmail.com
 * @date 2018/10/8.
 */
public class test {
    public static void main(String[] args) {
        String s1[]={"aa","bb","cc","dd"};
 
        s1=insertElment(s1,3,"xx");
        for(String temp:s1){
            System.out.println(temp);
        }
 
    }
 
    /**
     * 返回已經插入后的數組
     * @param str
     * @param index
     * @param elment
     * @return
     */
    public  static String[] insertElment(String str[],int index,String elment){
        String s2[]=new String[str.length+1];
        System.arraycopy(str,0,s2,0,index);
        s2[index]=elment;
        System.arraycopy(str,index,s2,index+1,str.length-index);
        return s2;
    }
}

 


免責聲明!

本站轉載的文章為個人學習借鑒使用,本站對版權不負任何法律責任。如果侵犯了您的隱私權益,請聯系本站郵箱yoyou2525@163.com刪除。



 
粵ICP備18138465號   © 2018-2025 CODEPRJ.COM