gpt4 book ai didi

c# - 需要根据传入的类类型来定位不同属性的 C# 通用方法的最佳实现

转载 作者:行者123 更新时间:2023-12-04 10:29:04 25 4
gpt4 key购买 nike

因此,我有一种方法可以解析传入的地址字段,并且根据其长度,它需要写入一个或多个字段(不要问...需要 Db2 遗留代码)。目前我们已经为每个需要的类实现了这个方法,我想编写一个通用方法,我必须在某种程度上完成。问题在于,虽然我们解析每个对象的地址字段的方式是相同的,但使用的属性名称根据它是哪个类而不同。

这需要我检查传入的对象的类型,然后执行双重转换 (ClassType)(object) 以便能够访问属性并正确设置它们,然后再执行一次双重转换 (T)(object) 以返回通用列表。

这是低效的,并且基本上在某种程度上违背了开始使用泛型的目的。有没有更好的方法来获得相同的功能而无需进行类型检查和双重强制转换才能访问类属性?

public List<T> ParseLongNameStreetName<T>(List<T> myList)
{
myList.ForEach(item =>
{
if (item.GetType() == typeof(DP1)) {
DP1 castItem = (DP1)(object)item;
dynamic streetName = ParsedStreetName(castItem.MA1 + " " + castItem.MA2);

castItem.MA1 = streetName.add1;
castItem.MA2 = streetName.add2;
castItem.MA3 = streetName.add3;

item = (T)(object)castItem;
}

else if (item.GetType() == typeof(DI1))
{
DI1 castItem = (DI1)(object)item;
dynamic streetName = ParsedStreetName(castItem.MA1 + " " + castItem.MA2);

castItem.MA1 = streetName.add1;
castItem.MA2 = streetName.add2;
castItem.MA3 = streetName.add3;

item = (T)(object)castItem;
}
else if (item.GetType() == typeof(DW1))
{
DW1 castItem = (DW1)(object)item;
dynamic streetName = ParsedStreetName(castItem.AD1 + " " + castItem.AD2);

castItem.AD1 = streetName.add1;
castItem.AD2 = streetName.add2;
castItem.AD3 = streetName.add3;

item = (T)(object)castItem;
}
});

return myList;
}



private dynamic ParsedStreetName(string address)
{
string add1 = string.Empty;
string add2 = string.Empty;
string add3 = string.Empty;

int addLen = address.Length;
try
{
add1 = addLen > 30 ? address.Substring(0, 30) : address.Substring(0, addLen);
add2 = addLen > 30 ? addLen > 60 ? address.Substring(29, 30) : address.Substring(30, addLen - 30) : "";
add3 = addLen > 60 ? address.Substring(59, addLen - 60) : "";
} catch(Exception ex)
{
Console.WriteLine(ex);
}


return new { add1, add2, add3 };
}

最佳答案

您要做的是将地址分配给不同的属性(取决于不同的类型)。对于它你不需要使用泛型类型,你只需要创建一个接口(interface)

   public interface IAddressAssignable
{
string GetRawAddress();
void AssignAddresses(string add1, string add2, string add3);
}

使所有 3 个(DP1、DI1、DWXP111)实现该接口(interface)(具有不同的逻辑(不同的属性)。然后在你的 ForEach()
myList.ForEach(item =>
{
dynamic streetName = ParsedStreetName(item.GetRawAddress());
item.AssignAddresses(streetName.add1, streetName.add2, streetName.add3);
}

关于c# - 需要根据传入的类类型来定位不同属性的 C# 通用方法的最佳实现,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/60495853/

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