作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我有一个 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"
, 等等。
Option<T>.SetValue(string[] strings)
函数应该能够处理。
最佳答案
您可以尝试这样做以允许非数组和数组泛型类型参数:
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/
我是一名优秀的程序员,十分优秀!