标签: java arrays
我需要编写一个数组来为我用Java编写的程序分配5个空间,我是新手,需要帮助。
答案 0 :(得分:2)
你可以这样做:
private Object[] myObjects = new Object[5];
根据需要更改类型。