我想不通这个:
> Given g, a reference to a Graphics object, use a constant defined in > the Color class to write a statement that arranges for the next drawn > rectangle to be red:
有人有想法吗?它适用于 Myprogramminglab
我想到了:
g.setColor(Color.red);
g.drawRect (10, 10, 200, 200);
或类似的东西,但不起作用。尝试了我能想象到的一切。
谢谢
编辑
Myprogramminglab 上的最后一个问题是这样的:
> Write the invocation (method name with arguments) needed to display > the outline of a square whose sides are 60 pixels and whose top right > corner is located at (100,200).
答案是:
drawRect(40,200,60,60)
所以我没有得到关于我需要做什么的更多或更少的信息,而且答案不像构建整个脚本。所以我真的没有头绪。在 Java Solutions 一书中,也没有关于我现在遇到的问题的信息。