我的日食无法阅读标准库?

时间:2015-01-29 03:23:08

标签: java eclipse standard-library

我写了这段代码:

public class CheckerBoard { 

    public static void main(String[] args) {
        // declaration and initialization - How big?
        int N = Integer.parseInt(args[0]);
        StdDraw.setXscale(0, N);
        StdDraw.setYscale(0, N);

        // Draw from lower left, up and across
        // i is the index for the x value.  j is the index for y.
        for (int i = 0; i < N; i++) {
            for (int j = 0; j<N; j++) {
                if ( ((i+j) % 2)==0){ 
                     StdDraw.setPenColor(StdDraw.BLACK);
                else StdDraw.setPenColor(StdDraw.RED);
                StdDraw.filledSquare( 1, 1 , 0.5);
            }
        }

        StdDraw.show();
    }

它显示在结果中:

StdDraw cannot be resolved
at CheckerBoard.main(CheckerBoard.java:15)

我已经在window-preferences-java中添加了std.lib。有谁知道这里的问题是什么?

1 个答案:

答案 0 :(得分:0)

从“Package Explorer”中选择项目。右键单击该项目。选择“属性”(最后一个)。选择“Java Build path”(可能是第三个选项)。选择“库”(可能会将其选为默认值)。如果Jar文件不在列表中,请单击“添加罐子”或“添加外部罐子”添加罐子。