一般来说在STACK,或者VECTOR中增加的都是单个元素,如何增加数组元素啊,比如
  int[][] a= new int[2][2];
  Stack  stack  = new Stack();
  a.push(a[0][]);
  中如何使得每次添加的都是两个元素。