如何从泛型列表中获取具有最高特定参数的项
本文关键字:高特定 参数 获取 泛型 列表 | 更新日期: 2023-09-27 18:02:14
我已经搜索了很多,但不能找到答案,我理解足够翻译成我的项目。目标是什么:我需要在列表中找到具有最高armor_class参数的物品,并将该物品的armor_class添加到角色的护甲类中。
那么,我们这样创建了一个列表:
public List<Weapon> characterInvWeapon;
public List<Armor> characterInvArmor;
等。
这是如何创建类装甲和它的属性:
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个属性。盔甲储存在Armor - 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参数的项目,并在其他函数中使用其值,该函数从许多变量中计算装甲类。
所以在其他功能中,characterArmorClass = armorWithHighestArmorClass + otherVariable + someotherVariable;
等
我怀疑Linq中有一些方便的快捷方式,但我最感谢一些没有Linq的例子。Linq也很受欢迎,但我对它完全陌生,而且我担心性能和我的应用程序与iPhone的兼容性。我听说iOS会导致Linq出现问题。这必须是快速和兼容的计算。
With 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;
当然,你也可以编写一个带有循环和"max"变量的手动方法。
顺便说一句,我注意到,你在AddToCharacterInventory
方法中对charInvArmor
进行排序。如果数组总是排序,那么,根据您的CompareTo
实现,具有最大armor_class
的项应该始终是最后一个(或第一个,我不确定)。所以只要取列表的最后(第一个)元素
你必须遍历列表并检查每个值,因为列表不是根据装甲等级值排序的,而且你不想使用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
}
作为旁注,我推荐以下链接:
公共字段与自动属性
和
c#风格指南*在c#中,Pascal大小写和驼峰大小写是既定的约定。