在
g中
drawString是你已经通过色彩值,而不是你的
Graphics参考。因此,错误是当您尝试在上调用方法
int而无法执行时。
// Passing an integer 'g' into the function here |// Vpublic void drawString(String str, int x, int y, int r, int g, int b){// | This 'g' is the integer you passed in// V g.setColor(r, g, b); g.drawString(str, x, y, 0);}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)