一处不明白
for (int i = 0; i < 4; i++) {
index = r.nextInt(len);
g.setColor(new Color(r.nextInt(88),r.nextInt(188),r.nextInt(255)));
g.drawString(ch[index]+"",(i*15)+3,18);
sb.append(ch[index]);
}
g.drawString()方法这里的x坐标为什么要设为(i*15)+3?望大神指教,也没接触过Graphics,BufferedImage这些类