Java JButton Array Initialization Based on Setting Class Variables
// Creating an array of JButtons for dots with size equal to the product of ROW and COLUMN from the Setting class // Initializing a new object of the Setting class // Note: It is assumed that the Setting class contains two public static variables named ROW and COLUMN. JButton[] dots = new JButton[Setting.ROW * Setting.COLUMN]; Setting setting = new Setting();
原文地址: https://www.cveoy.top/t/topic/n3vu 著作权归作者所有。请勿转载和采集!