welcome: please sign in
location: "リスト処理の演習"の差分
2と21のリビジョン間の差分 (その間の編集: 19回)
2009-11-10 12:22:39時点のリビジョン2
サイズ: 594
編集者: masahiko
コメント:
2012-03-27 04:56:32時点のリビジョン21
サイズ: 1292
編集者: masahiko
コメント:
削除された箇所はこのように表示されます。 追加された箇所はこのように表示されます。
行 1: 行 1:
== 課題06のヒント == ## page was renamed from Java課題07
== リスト処理の演習 ==
行 3: 行 4:
1.クラス図をみるだけで書けることがらもあります。
 {{attachment:foodclass.png}}
Chainクラスを作成し、次のいずれかを行うmainメソッドを記述しなさい。
行 7: 行 7:
 public class Food extends Item
 {
  double 重さ;
  double 熱量;
  
  Food(名前, 価格, 重さ, 熱量)
  {
  }
  
  void disp()
  {
  }
  
  double gramTanka()
  {
  }
 }
public class Chain
{
 Chain next;

 void show()
 {
  System.out.println(this);
 }

 void showAll()
 {
  Chain c;

  c = this;
  System.out.println("(");
  while(c != null)
  {
   c.show();
   c = c.next;
  }
  System.out.println(")");
 }
 
 public static void main(String[] args)
 {
  Chain a, b, c;
  ...
 }
}
行 25: 行 37:
2.重さ、熱量の変数名を決めます。 ----
==== 1. (初級) ====
mainメソッド内の変数a,b,cが図のようなオブジェクトを参照しているようにした後
 {{{
a.showAll();
b.showAll();
c.showAll();
 }}}
を行って動作を確かめなさい。
 . {{attachment:chain11.png}}
行 27: 行 48:
3.名前、価格の変数名はItemクラスで決めたものを使います。 ヒント
 . インスタンスは必要な個数(7つ) new Chain() で作成します。
----
==== 2. (中級) ====
1と同じことを、 next.next のような記述をしないで行いなさい。
行 29: 行 54:
4.Foodコンストラクタの引数にもそれぞれの型クラスを記述します。 ヒント
 . 作業用の変数が1つ必要です。
----
==== 3. (上級) ====
1と同じことを、インスタンスを次の順で作成して行いなさい。
 . {{attachment:chain12.png}}

ヒント
 . 作業用の変数はa,b,cの他に1つとする。

リスト処理の演習

Chainクラスを作成し、次のいずれかを行うmainメソッドを記述しなさい。

  •    1 public class Chain
       2 {
       3         Chain next;
       4 
       5         void show()
       6         {
       7                 System.out.println(this);
       8         }
       9 
      10         void showAll()
      11         {
      12                 Chain c;
      13 
      14                 c = this;
      15                 System.out.println("(");
      16                 while(c != null)
      17                 {
      18                         c.show();
      19                         c = c.next;
      20                 }
      21                 System.out.println(")");
      22         }
      23         
      24         public static void main(String[] args)
      25         {
      26                 Chain a, b, c;
      27                 ...
      28         }
      29 }
    


1. (初級)

mainメソッド内の変数a,b,cが図のようなオブジェクトを参照しているようにした後

  • a.showAll();
    b.showAll();
    c.showAll();

を行って動作を確かめなさい。

  • chain11.png

ヒント

  • インスタンスは必要な個数(7つ) new Chain() で作成します。


2. (中級)

1と同じことを、 next.next のような記述をしないで行いなさい。

ヒント

  • 作業用の変数が1つ必要です。


3. (上級)

1と同じことを、インスタンスを次の順で作成して行いなさい。

  • chain12.png

ヒント

  • 作業用の変数はa,b,cの他に1つとする。

リスト処理の演習 (最終更新日時 2012-03-27 05:02:27 更新者 masahiko)