1
import java.util.Scanner;
public class Rectangle
{
public static void main(String[] args)
{
    -Don't know how to call method here-
}

/**
 * returns the area of a rectangle
 * @param height the height of the rectangle
 * @param width the width of the rectangle
 */
public static int area (int length, int width)
{
    return length * width;
}

/**
 * returns the perimeter of a rectangle
 * @param height the height of the rectangle
 * @param width the width of the rectangle
 */
public static int perimeter (int length, int width)
{
    return length + width;
}

/**
 * returns the details of the rectangle
 * @param height the height of the rectangle
 * @param width the width of the rectangle
 */
public static void printRectangleDetails (int length, int width)
{
    System.out.println ("This is the length of the rectangle " + length);

    System.out.println ("This is the width of the rectangle " + width);

    System.out.println (("This is the perimeter of the rectangle " + (length + width)));

    System.out.println (("This is the area of the rectangle " + (length * width)));
}

/**
 * Read in an integer and return its value
 * @param the prompt to be shown to the user
 */
public static int readInteger(String prompt)
{
    Scanner scan = new Scanner(System.in);
    System.out.println("Enter an integer");
    int input = scan.nextInt();
    return input;
}

}

我正在尝试调用方法 readInteger 来提示用户插入矩形的高度和宽度。这是我对方法的第一次体验,因此将不胜感激,我也不确定 readInteger 方法是否正确。

谢谢!

4

3 回答 3

2

您调用一个方法,通常使用以下语法:

methodName();

例子:

要调用 area 方法,您说:

public static void main(String[] args)
 {
      area(2,3);
 }

注意:在这种情况下,该对象是隐含的,因为您的 area 方法对于包含 main 方法的矩形类是公共的和静态的。

如果 area 位于不同的类中,您将通过首先实例化然后对对象进行方法调用来以不同的方式调用方法。

于 2012-11-23T04:48:26.100 回答
2

在您的方法中,您可以通过调用您在类中创建的方法main()来读取矩形的长度和宽度:readInteger()Rectangle

 int length = readInteger(" For Length ");
 int width = readInteger("For Width ");
 printRectangleDetails(length,width);

首先,将此行添加到 readInteger() 方法:

  System.out.println (prompt);
于 2012-11-23T05:09:10.407 回答
0

试试这个

 public static void main(String[] args) {
    Scanner s= new Scanner(System.in) ;
    System.out.print("Enter length : " );
    int len=Integer.parseInt( s.nextLine()) ;
    System.out.print("\nEnter width : ");
    int wd=Integer.parseInt( s.nextLine()) ;
    printRectangleDetails(len,wd);     
 }
于 2012-11-23T05:07:48.707 回答