- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
我有一个自定义的辅助方法,它接受一个值,并确定它的类型。如果它是一个可以被枚举的数据结构,那么它会被传递给相应的 ToString
方法以被打印出来。但如果没有,则调用内置的 .ToString()
方法。
public static String GetString<T> (T value)
{
Type t = typeof(T);
if (t.IsSubclassOf (typeof(IDictionary)))
return _GetString_Dictionary(value);
else if (t.IsSubclassOf (typeof(IEnumerable)))
return _GetString_Enumerable (value);
else
return value.ToString ();
}
但是,我遇到了很多错误,这些错误与无法为每次调用其他方法推断出参数类型有关。对于如何解决这个问题,我目前没有主动权;甚至可以实现吗?
下面是上面调用的其他toString方法,供引用;
private static String _GetString_Dictionary<KT, VT> (Dictionary<KT, VT> d)
{
string s = "{";
foreach (var pair in d)
s += GetString(pair.Key) + " : " + GetString(pair.Value) + ", ";
return s.Substring (0, s.Length - 2) + "}";
}
private static String _GetString_Enumerable<T> (IEnumerable<T> e)
{
string s = "[";
foreach (T i in e)
s += GetString(i) + ", ";
return s.Substring(0, s.Length-2) + "]";
}
编辑:根据 Equiso 的信息缩短代码。
按照 David Manning 的示例,我已将代码修改为这样;
public static String GetString<KT, VT> (Dictionary<KT, VT> d)
{
string s = "{";
foreach (var pair in d)
s += GetString(pair.Key) + " : " + GetString(pair.Value) + ", ";
return s.Substring (0, s.Length - 2) + "}";
}
public static String GetString<T> (IEnumerable<T> e)
{
string s = "[";
foreach (T i in e)
s += GetString(i) + ", ";
return s.Substring(0, s.Length-2) + "]";
}
public static String GetString<T> (T value)
{
return value.ToString ();
}
它不再抛出错误。
编辑:它没有按预期工作;它会在传递给它的每个对象上调用 .ToString()
的通用 .ToString()
版本,而不是更具体的重载(如果适用的话)。将 List
对象传递给它会返回字符串 System.Collections.Generic.List'1[System.String]
。而不是列表的内容。
最佳答案
您不需要在这里使用泛型,您可以使用非泛型集合接口(interface)定义 GetString,编译器会将您的调用绑定(bind)到最具体的一个。例如:
public static String GetString(object value) {
if (value is string) {
return value as string;
} else if (value is IDictionary) {
return GetString(value as IDictionary);
} else if (value is IEnumerable) {
return GetString(value as IEnumerable);
} else {
return value.ToString();
}
}
public static String GetString(string l) {
return l;
}
public static String GetString(IEnumerable l) {
string s = "[";
foreach (object i in l) {
s += GetString(i) + ", ";
}
if (s != "[") s = s.Substring(0, s.Length - 2);
return s + "]";
}
public static String GetString(IDictionary d) {
string s = "{";
foreach (object key in d.Keys) {
s += GetString(key) + " : " + GetString(d[key]) + ", ";
}
if (s != "{") s = s.Substring(0, s.Length - 2);
return s + "}";
}
Array、List 和 IEnumerable 情况都将包含在 IEnumerable 重载中。注意:需要重载字符串,因为我们不想将其视为 IEnumberable。
关于c# - 无法在通用 tostring 方法 C# 中推断类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28468560/
当使用模板模板参数时,我如何推断或删除模板模板的模板类型? 考虑以下 SSCCE: #include #include #include using namespace std; templat
假设我有一些特质: trait A[T] { def foo: T } 一个扩展它的类: class B[T](t: T) extends A[T] { def foo = t } 以及父特征的子特征
一边玩-rectypes在某些时候选择 OCaml 我只是迷路了。 这个表达式几乎可以打字: # fun x -> x x;; - : ('a -> 'b as 'a) -> 'b = 但是这里 O
我正在编写一个类似 CRUD 的应用程序,并且通过主键进行大量查找(主键可以有不同的类型)。所以我定义了以下类型类: {-# LANGUAGE MultiParamTypeClasses #-} cl
我已经创建了关系 A 'is functional parent of' B并定义 'has functional parent'作为 'is functional parent of' 的倒数. '
给定一个使用 Kotlin 版本 1.3.61 和 JOOQ 版本 3.13.1 的系统,这样的方法会构建 union正常查询: val selectCommonPart = coalesce
考虑以下错误代码: fun x = if (null x) then 0 else (take 50 x) : (fun (drop 50 x)) 我注意到,我可以毫无问题地将它加载到
给定一个具有以下类型的函数 a: a::x -> Bool 和以下类型的另一个函数 b: b::Bool -> y 我正在尝试找出推断以下函数类型的步骤: c =\d -> d a b 有人可以帮助解
我正在尝试使用 Infer 工具来分析我的应用代码。我关注了these steps每次我尝试运行 infer -- gradle build 时,我都会收到以下错误: infer -- gradle
所以我制作了这个模板来定义内联仿函数: template struct AsFunctor { template std::invoke_result_t operator()(A
是否可以推断 CRTP 基类中模板化成员函数的返回类型? 虽然推断参数类型效果很好,但它因返回类型而失败。考虑以下示例。 #include template struct base { tem
使用 Series.interpolate 很容易在 Pandas.DataFrame 中插入值,如何进行外推? 例如,给定一个如图所示的 DataFrame,我们如何将它外推 14 个月到 2014
我想知道为什么这不起作用(缺少参数类型)? Seq(1,2,3).toSet.map(_ + 1) 但这确实: val foo = Seq(1,2,3).toSet foo.map(_ + 1)
我没有必要使用 SQLite3 shell 工具来维护一个小型数据库。我正在使用 -header -ascii标志,尽管据我所知,这适用于任何输出选择。我正在寻找一种方法来避免对返回的任何一个值的类型
我有以下组件 type PropTypes = { items: T[], header: (item: T) => React.Element, body: (item: T) => R
我想在 Eclipse/JSDT 中指定实例变量的类型,如下例所示: /** * @constructor */ function A() { /** @type Node */
我正在用 Python 编写一个方法,它看起来像这样: def rgb_to_grayscale(image): print(image.shape) pass 此处预期的类型是 nu
我有一个 my_values 数组,我正在尝试为其推断 true_values 数组中最接近、较小的值。使用下面的 find_nearest 函数并不能完成我想要的。我如何追加它以找到最近的、较小的值
在下面的代码中: template int b(int q, const std::array& types) { int r = q; for (int t : types)
在 Pandas DataFrame 中插入 NaN 单元非常容易: In [98]: df Out[98]: neg neu pos av
我是一名优秀的程序员,十分优秀!