数组

package com.tiedandan.base;

public class arry
{
public static void main(String[] args) {//string[]也是数组
int[]nums;//首选声明
int nums2[];//也能用;
nums=new int[10];//数组创建,给数组分配长度
int[]nums3=new int[10];//完整定义
}
}
//数组长度一旦确定就无法更改。
//数组声明发生在栈内,数组创建发生在堆内。
//数组创建宛未赋值默认初始化值都是零。
//数组本身就是对象,对象在堆中,所以数组也在堆中

posted on 2021-11-10 22:15  张铁蛋666  阅读(13)  评论(0编辑  收藏  举报

导航