python manage.py shell 的增删改查 guoguo-MacBook-Pro:myblog guoguo$ python manage.py shell Python 3.5.1 (v3.5.1:37a07cee5969, Dec 5 2015, 21:12:44) Type 'copyright', 'credits' or 'license' for more information IPython 6.2.1 -- An enhanced Interactive Pyth…
数组的增加方法 1.push()方法向数组中末尾添加一个元素,原数组改变 var arr=[1,2,3,4]; var arr1=arr.push(6); console.log(arr);//打印出来是数组元素 consloe.log(arr1);//打印出来是数组的长度 2.unshit()方法向数组中开始元素添加一个元素,原数组改变 var arr=[1,2,3,4]; var arr2=arr.unshit(6); console.log(arr);//打印出来是数组 consloe.l…
import java.util.*; import java.lang.*; public class Array { private int[] data;// 数组 private int size;// 实际元素的个数 // 初始化数组大小 public Array(int capcity) { data = new int[capcity]; } // 默认数组大小为10 public Array() { this(10); } // 查看数组中元素个数 public int getS…