0

json応答を取得して解析しています。それぞれ、次のモデルと識別子を取得できます(以下を参照)。ここで、大文字と小文字を区別せずに、モデルのみで並べ替える必要があります。したがって、配列を作成すると、モデルだけで並べ替えることが不可能ではないにしても難しくなり、ハッシュを実行すると、重複したキー(モデル)を作成できなくなります。
では、このjson応答をソートするための最良のアプローチは何でしょうか?ありがとう !!

 this is the model: 1 Series
  this is the identifier: Convertible
  this is the model: 1 Series
  this is the identifier: Coupe
  this is the model: 1 Series M
  this is the identifier: Coupe
  this is the model: 3 Series
  this is the identifier: Convertible
  this is the model: 3 Series
  this is the identifier: Coupe
  this is the model: 3 Series
  this is the identifier: Diesel
  this is the model: 3 Series
  this is the identifier: Sedan
  this is the model: 3 Series
  this is the identifier: Wagon
  this is the model: ALPINA B7
  this is the identifier: Sedan
  this is the model: ActiveHybrid 5
  this is the identifier: Sedan
  this is the model: ActiveHybrid 7
  this is the identifier: Sedan
  this is the model: ActiveHybrid X6
  this is the identifier: SUV
4

2 に答える 2

0

配列をソートできないのはなぜですか? これは機能します。

[["1 Series","Convertible"],["3 Series","Coupe"]].sort
于 2012-07-27T19:46:43.043 に答える
0

クラスがComparableに混在するオブジェクトの配列を使用します。(別名「宇宙船」)を実装するだけで、配列<=>を呼び出すことができます。sort

于 2012-07-27T19:24:27.653 に答える