gpt4 book ai didi

C# 比较字符串值数组

转载 作者:行者123 更新时间:2023-11-30 21:53:22 24 4
gpt4 key购买 nike

我正在使用静态方法创建静态类,该静态方法比较填充了用户输入选择的字符串和“应该是输入”的预定义数组;

我关心的是预定义数组在类中的位置,以及要使用的正确数据类型实际上是数组还是字典。

我将在预定义中最多包含大约 150 个字符串,并准备好与字符串数组进行比较。

这是我目前所拥有的。

public static class SelectionMatchHelper
{
static readonly string[] predefinedStrings = {"No answer", "Black", "Blonde"};
public readonly static bool SelectionMatch(string[] stringsWeAreComparingAgainst, int validCount)
{
int numberOfMatches = 0;
for (int x = 0; x < "length of string array"; x++)
{
//will loop through and check if the value exists because the array to match against will not always have the same index length

numberOfMatches += 1;
}
numberOfMatches.Dump();
if (numberOfMatches == 0 || numberOfMatches < validCount || numberOfMatches > validCount) return false;
return true;
}

}

这基本上是基于用户必须满足的参数数量,方法获取匹配项,如果不等于该数量,则返回 false。用户使用的输入是下拉列表,因此这仅用于确保我的值在保存之前未被篡改。

我的问题是什么数据类型最适合这种情况——字符串数组/列表或字典?第二个问题是,为了避免线程问题,应该将其放置在方法内部还是外部?

编辑 - 我只想补充一点,预定义值将保持不变,所以我最终会将该字段设置为只读常量值。

编辑 2 - 刚刚重新检查了我的代码,我不会使用 CompareOrdinal,因为我完全忘记了顺序很重要的部分。所以这将是一个关键的查找。所以我会删除方法的内部,这样人们就不会混淆了。主要问题还是一样。

谢谢大家的帮助。

最佳答案

从可读性的角度来看,HashSet 是最好的类型,因为它专门针对“项目存在于集合中”而存在。

 static readonly HashSet<string> predefinedStrings = new HashSet<string>(
new []{"No answer", "Black", "Blonde"},
StringComparer.Ordinal);

if (predefinedStrings.Contains("bob"))....

还好HashSet也是thread safe for read-only operations , 提供 O(1) 的检查时间,并在需要时支持不区分大小写的比较。

关于C# 比较字符串值数组,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33907666/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com