2

有人可以帮忙吗?当我编译这个 Java 文件时,我无法弄清楚为什么会出现这个错误。该错误是一个棘手的错误(';' expected)。这 ”;” 预计在测试应用程序的“新”和“矩形”之间的第 7 行。

如果您需要我的主应用程序代码,我也可以添加。

import java.util.Scanner;

public class RectangleTest
{
    public static void main( String[] args )
    {
        Scanner input = new Scanner( System.in );
        Rectangle rectmeas = New Rectangle(); // LINE 7, WHERE THE ERROR IS
        int userinput = getOptions();
        while ( userinput != 3 )
        {
            switch ( userinput )
            {
                case 1:
                    System.out.print( "Please enter the length: " );
                    rectmeas.setLen( input.nextDouble() );
                    break;
                case 2:
                    System.out.print( "Please enter the width: " );
                    rectmeas.setWid( input.nextDouble() );
                    break;
            }
            System.out.println( rectmeas.toString() );
            userinput = getOptions();
        }
    }
    private static int getOptions()
    {
        Scanner input = new Scanner( System.in );
        System.out.println( "Press 1 to input the length" );
        System.out.println( "Press 2 to input the width" );
        System.out.print( "Which one?: " );
        return input.nextInt();
    }
}
4

4 回答 4

9

Java 关键字都是小写的。您应该使用new而不是New.

于 2012-09-24T03:02:02.027 回答
7
 Rectangle rectmeas = New Rectangle();

应该

Rectangle rectmeas = new Rectangle();

当你想在 java 中创建一个对象时,你需要使用new而不是New. Java 区分大小写。

于 2012-09-24T03:02:00.997 回答
1

这是因为所有 java 关键字都是小写的,所以使用new.

于 2012-09-24T03:15:23.023 回答
0

它的 new 而不是 New ,Java 是一种区分大小写的语言, new 和 New 并不意味着同一件事。new : 创建新对象的关键字

于 2012-09-24T14:05:08.217 回答