1

私は次のクラスを持っています:

MinMaxArrayクラス:

public class MinMaxArray
{
  public static <T> void MinMax(T[] anArray)
  {
    //return an instance of class Pair
  }//MinMax
}//class MinMaxArray

ペアクラス:

//Two objects grouped into a pair.
public class Pair<FirstType, SecondType>
{
  //The first object.
  private final FirstType first;

  //The second object.
  private final SecondType second;

  //Constructor is given the two objects.
  public Pair(FirstType requiredFirst, SecondType requiredSecond)
  {
    first = requiredFirst;
    second = requiredSecond;
  }//Pair



  //Return the first object.
  public FirstType getFirst()
  {
    return first;
  }//GetFirst


  //Return the second object.
  public SecondType getSecond()
  {
    return second;
  }//GetSecond

}//class Pair

ペアクラスのインスタンスを返す方法がわかりません。答えを探すのではなく、出発点にすぎません。ありがとう

4

1 に答える 1

2

ヒントは、2つのタイプとしてペアを作成できることですT

于 2012-04-15T11:55:54.487 に答える