gpt4 book ai didi

c# - 如何将字符串数组转换为泛型数组类型,同时允许非数组和数组作为类的泛型类型参数?

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

我有一个 Option<T>这适用于从字符串转换的任何类型,现在我试图扩展它以涵盖 Option<T[]> (即, Option<int[]>) 。我担心我可能会遇到这个问题,因为我的腰带下有太多 C++ 模板。无法围绕看似不足的 C# 泛型来解决问题。我可以检测到 T 何时是一个数组,但之后我就不能了不要使用 typeof(T).GetElementType()
我想我可能处于那些 XY 问题谷之一,我只是从错误的方向来到这里,看不到上升的路径。任何想法如何获得解锁?我已经尝试了所有我能想到的方法,并在过去的几天里试图找出疏通的方法。
我想补充一点,我可以安排在转换之前将逗号分隔的字符串解析为字符串数组。下面的代码是我尝试过的一些代码的简化摘录。

using System;
using System.Collections.Generic;

namespace StackOverflowCS
{
internal static class ConversionExtensionMethods
{
internal static T ChangeType<T>(this object obj)
{
try
{
return (T)Convert.ChangeType(obj, typeof(T));
}
catch (Exception e)
{
Console.WriteLine(e);
throw;
}
}

internal static T ChangeType<T>(this object[] objects)
{
try
{
if (!typeof(T).IsArray) throw new Exception("T is not an array type.");

var converted = new object[objects.Length];

foreach (var item in objects)
{
// AFAIK, converstion requires compile time knowledge of T.GetElementType(),
// but this won't compile.
converted.Add(item.ChangeType<typeof(T).GetElementType())>
}

return (T)converted; // And this won't compile either.
}
catch (Exception e)
{
Console.WriteLine(e);
throw;
}
}
}


internal class Option<T>
{
public T Value;

public Option() {}

// This works fine for non-arrays
public bool SetValue(string valueString)
{
try
{
Value = valueString.ChangeType<T>();
}
catch (Exception e)
{
Console.WriteLine(e);
return false;
}

return true;
}

// I think I am in an XY problem valley here.
public bool SetValue(string[] valueStrings)
{
try
{
if (!typeof(T).IsArray)
{
throw new Exception("T is not an array type.");
}

// The crux of my problem is I can't seem to write pure generic code in C#
var convertedElements = new List<!!!Cannot use typeof(T).GetElementType() here!!!>();

foreach (var item in valueStrings)
{
// The crux of my problem is I can't seem to write pure generic code in C#
convertedElements.Add(!!!Cannot use typeof(T).GetElementType() here!!!);
}
}
catch (Exception e)
{
Console.WriteLine(e);
return false;
}

return true;
}
}

public class Program
{
static void Main(string[] args)
{
var opt = new Option<int>(); // Works fine.

var integerList = new Option<int[]>();

integerList.SetValue("this,that,whatever"); // This fails at run-time.

foreach (var item in integerList.Value)
{
Console.WriteLine(item);
}


Console.ReadKey();
}

}
}

解析器(未显示)可以检测形式的参数 Opt:1,2,3或者 Opt:"short sentence",word,"string with quotes\" in it" , 等等。
我宁愿不让解析器尝试找出 Opt Option 的数组元素是什么类型。 Option<T>.SetValue(string[] strings)函数应该能够处理。
我什至还没有尝试过测试/实现 `Options ,尽管我怀疑那会容易得多。

最佳答案

您可以尝试这样做以允许非数组和数组泛型类型参数:

using System;
using System.Linq;
SetValue(string valueString)
public bool SetValue(string valueString)
{
try
{
if ( typeof(T).IsArray ) throw new Exception("T is an array type.");
Value = (T)Convert.ChangeType(valueString, typeof(T));
}
catch ( Exception e )
{
Console.WriteLine(e);
return false;
}
return true;
}
SetValue(string[] valueStrings)
public bool SetValue(string[] valueStrings)
{
try
{
if ( !typeof(T).IsArray ) throw new Exception("T is not an array type.");
var thetype = typeof(T).GetElementType();
var list = valueStrings.Select(s => Convert.ChangeType(s, thetype)).ToList();
var array = Array.CreateInstance(thetype, list.Count);
for (int index = 0; index < list.Count; index++ )
array.SetValue(list[index], index);
Value = (T)Convert.ChangeType(array, typeof(T));
}
catch ( Exception e )
{
Console.WriteLine(e);
return false;
}
return true;
}
测试
static void Main(string[] args)
{
// Non array
var opt = new Option<int>();
opt.SetValue("10");
Console.WriteLine(opt.Value);
Console.WriteLine();
// Array
var integerList = new Option<int[]>();
integerList.SetValue(new[] { "1", "2", "3" });
foreach ( var item in integerList.Value )
Console.WriteLine(item);
// End
Console.ReadKey();
}
输出
10

1
2
3

关于c# - 如何将字符串数组转换为泛型数组类型,同时允许非数组和数组作为类的泛型类型参数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63895901/

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