开发步骤和思路1、编写主框架类JFiveFrame,设置大小,标题,关闭窗口的行为,在main中创建并显示。2、编写DrawPanelextendsJPanel,定义构造函数,来设置背景颜色。然后在主框架类中创建DrawPanel对象,并添加到主框架中。3、DrawPanel中覆盖paintComponent方法来进行绘制。绘制15*15网格的棋盘,绘制前先定义边距、行数、列数、网格宽度等常量4、定义Chess类,包括x,y索引,颜色。定义构造函数和相应的get方法。5、在DrawPanel中创建Chess[],然后在paintComponent方法中绘制棋子数组(注意将索引转换成坐标)。6、为DrawPanel