-3

我对究竟是什么方法感到困惑,所以我希望有人用这个示例程序向我解释这个概念:

import java.io.*;
import java.util.*;

public class programB {

   public static void main(String[] args) throws IOException {

      String filename;
      String total="";
      String c = "";
      String size = "";
      int num1=0, num2=0;
      char ch;

      Scanner keyboard = new Scanner(System.in);

      System.out.println("Enter the name of the file you want to read data from:"); 
      filename=keyboard.next(); 

      Scanner fromFile = new Scanner(new FileReader(filename));

      while (fromFile.hasNext()) {
         String type = fromFile.next();

         ch = fromFile.next().charAt(0);
         num1 = fromFile.nextInt();
         if (type.equals("rectangle")) {
            num2 = fromFile.nextInt();
         }
         System.out.print(type + " ");
         System.out.print(ch + " ");
         System.out.print(num1 + " ");
         if (type.equals("rectangle")) {
            System.out.print(num2);
        }
         System.out.println();
         if (type.equals("rectangle")){
            rectangle(ch,num1,num2);

         }
         if (type.equals("triangle")){
            triangle(ch, num1);
         }

      }


   }
   /** Draw a rectangle of the specified width and height
    @param c the character that creates the drawing
    @param height the height of the rectangle
    @param width the width of the rectangle
*/
   public static void rectangle(char c, int height, int width){

      for (int i=1; i<=height; i++) {
         System.out.println();
         for (int a=1; a<= width; a++) {
            System.out.print(c);
     }

  }
  System.out.println();

   // put statements here to display a rectangle on the screen using
   // character c and the width and height parameters
   }



/** Draw a right triangle.
@param c the character that creates the drawing
@param size the height and width of the triangle
*/

   public static void triangle(char c, int size){
      for (int i=1; i<=size;i++) {
         for (int j=1; j<=i; j++) {
            System.out.print(c);
         }
         System.out.println();

      // put statements here to display a triangle on the screen using
      // character c and the size parameter
      }
   }
 }

方法是什么,它们有什么作用?我试过在网上研究它,我一直在研究我的教科书,但我仍然对这个概念感到困惑。

4

2 回答 2

1

我认为,这些方法附带的文档很好地解释了它们的作用。当使用参数 '-'、3 和 4 调用该rectangle()方法时,将在运行程序的控制台中“绘制”一个 3 高、4 宽的矩形:

----
----
----

triangle()方法类似;当用 '-' 和 3 调用时,你会得到这样的形状:

-
--
---
于 2013-10-07T00:52:59.807 回答
1

在基本层面上,方法是编写可以多次使用的代码的方法。Java 中的方法允许您在代码中定义某些操作。

这样想:你知道怎么画三角形,对吧?所以如果我告诉你,“去画一个三角形”,你就会确切地知道该怎么做。我不必说,“把你的铅笔放在一张纸上,画一条短线,然后不要拿起你的铅笔,再画一条线,然后画一条最后的线,连接你的铅笔现在的位置和你的位置。开始了。” 这是一大堆指令,所以让我们说,每当我想让你画一个三角形时,我就说,triangle()。同样,让我们​​对rectangle().

但是,如果这变得更复杂一点呢?我不只是告诉你“画一个三角形”,而是说“使用具有一定高度和一定宽度的 ASCII 字符绘制一个三角形”,这能有多难呢?它实际上非常简单——你需要知道三个不同的东西:the character、theheight和 the width。一旦你有了这些,你就知道该做什么了。

这正是您的代码在您调用时所做的事情triangle()-rectangle()您将三个参数传递给每个参数,您的代码会绘制一个三角形和一个矩形。您可以根据需要多次执行此操作。

于 2013-10-07T00:56:32.197 回答