数组建立是不可以改变长度的,但是在实际使用中可以定义一个类把数组封装起来。实现改变长度。- class lianxi
- {
- public static void main(String[] args)
- {
- int x = 10;
- int z = 20;
- new shizu().fangfa1(x);
- new shizu().fangfa1(z);
- }
- }
- class shizu
- {
- void fangfa1(int x)
- {
- int y[] = new int [x];
- y[1]=2;
- System.out.println(y[1]);
- }
- }
复制代码 |
|