类数组变量定义与初始化

JButton[] b =new JButton[10];

for(int i=0;i<10;i++){
b[i] = new JButton();
}
原文地址:https://www.cnblogs.com/pekkle/p/6568830.html