C# - 如何从具有最高特定参数的通用列表中获取项目?

时间:2016-08-13 21:33:20

标签: c# sorting unity3d unity5 generic-list

我搜索了很多,但找不到我理解的答案,足以翻译成我的项目。目标是什么:我需要在列表中找到具有最高armor_class参数的项目,并将项目'armor_class添加到角色的护甲类。

所以,我们有一个以这种方式创建的列表:

public List<Weapon> characterInvWeapon;
public List<Armor> characterInvArmor;

以下是如何创建类Armor及其属性:

public class Armor : Item, IComparable <Armor> {
  public string armor_prof;
  public string armor_category;
  public int armor_class;
  public int armor_str_req;
  public string armor_stealth_mod;

  public Armor (string c_name
      , string c_description
      , bool c_stackable
      , int c_value
      , string c_coin_type
      , int c_weight
      , string c_armor_prof
      , string c_armor_category
      , int c_armor_class
      , int c_armor_str_req   
      , string c_armor_stealth_mod) : base (c_name, c_description, c_stackable, c_value, c_coin_type, c_weight)
  {
      armor_prof = c_armor_prof;
      armor_category = c_armor_category;
      armor_class = c_armor_class;
      armor_str_req = c_armor_str_req;
      armor_stealth_mod = c_armor_stealth_mod;
  }

  public int CompareTo(Armor other)
  {
      if (armor_class == other.armor_class)
        return String.Compare (name, other.name); // a < ab < b 
      else
        return other.armor_class - armor_class;
  }
}

Armor是一个继承自Item类的类,它具有前6个属性。护甲存储在特定于护甲的列表中 - public List<Armor> characterInvArmor;

示例项目:

AddToItemStore(new Armor("Breastplate", "Description.", false, 400, "gp", 20, "Breastplate", "Medium Armor", 14, 0, ""));

添加脚本:

public void AddToCharacterInventory(Item it)
    {
        if (it is Weapon)
        {
            charInvWeapon.Add((Weapon)it);
            charInvWeapon.Sort();
        }
        else if (it is Armor)
        {
            charInvArmor.Add((Armor)it);
            charInvArmor.Sort();
        }
    }

正如我所提到的,我需要在charInvArmor列表中找到一个具有最高armor_class参数的项目,并在其他函数中使用它的值,该函数从许多变量计算armor类。

所以在其他函数中,characterArmorClass = armorWithHighestArmorClass + otherVariable + someotherVariable;等。

我怀疑Linq有一些方便的快捷方式,但我非常感谢没有Linq的一些例子。 Linq也会受到欢迎,但我对它很陌生,而且我担心性能和我的应用程序与iPhone的兼容性。我读过iOS可能会导致Linq出现问题。这必须是快速且兼容的计算。

2 个答案:

答案 0 :(得分:2)

使用LINQ:

int maxArmorClass = characterInvArmor.Max(armor => armor.armor_class);

没有LINQ with Sort:

var list = characterInvArmor.ToList(); // copy list, so we do not break sorted orded
list.Sort((armor1, armor2) => armor2.armor_class.CompareTo(armor1.armor_class));
int maxArmorClass = list[0].armor_class;

当然,您总是可以编写一个带循环的手动方法,并且&#34; max&#34;变量

顺便说一句,我注意到,您在charInvArmor方法中对AddToCharacterInventory进行了排序。如果数组始终排序,那么,根据您的CompareTo实现,最大armor_class的项目应始终为最后一个(或者首先,我不确定)。所以只需要列表中的最后一个(第一个)元素。

答案 1 :(得分:1)

您必须循环遍历列表并检查每个值,因为列表未根据装甲类值进行排序,并且您不想使用LINQ:

int maxArmorClass = 0;
foreach (var armor in characterInvArmor)
{
    // Do a comparison here and see if you found a higher value
    // If a higher value is found, store it in maxArmorClass
}

作为旁注,我建议使用以下链接:

Public Fields versus Automatic Properties

Style guide for c# *在C#中,Pascal套管和骆驼套管是既定惯例。