- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
XmlSerializer
正在调用 IList<T>.Add()
在我的课上,我不明白为什么。
我有一个自定义类(层次结构中的几个类之一),其中包含我使用 XmlSerializer
与 XML 相互转换的数据。 .在我以前的代码版本中,这些类没有实现任何接口(interface),XML 序列化和反序列化似乎都按预期工作。
我现在正在编写一些使用此类中包含的数据的其他代码,我认为如果我可以通过 IList<T>
访问数据会很有帮助。接口(interface),所以我修改了我的类来实现该接口(interface)。 (本例中的“T”是我的另一个自定义类。)这不涉及向该类添加任何新字段;我实现了所有 required methods and properties就已经存储的数据而言。
我希望这不会以任何方式影响序列化。但是,当将 XML 数据反序列化到我的类中时,现在有些东西正在调用新的 Add()
。我作为 IList<T>
的一部分实现的方法接口(interface)(这是一个问题,因为这个特定列表 IsReadOnly
等 Add()
抛出 NotSupportedException
)。
即使我的类的 XML 节点只是 <myClass/>
也会发生这种情况没有任何 XML 属性或子元素; XmlSerializer
显然仍在创建一个新的 myOtherClass
(未在 XML 文档中的任何地方命名)并尝试 Add()
它到 myClass
.
我在这方面搜索信息时遇到问题,因为大多数问题都涉及 XmlSerializer
和 IList<T>
似乎涉及人们试图序列化/反序列化 IList<T>
类型的变量.那不是我的情况;我没有 IList<T>
类型的变量代码中的任何位置。如果我不实现 IList<T>
,我的类序列化和反序列化就很好了界面。
谁能给我解释一下为什么XmlSerializer
正在调用 IList<T>.Add()
在我的课上,和/或如何让它停止?
理想情况下,建议应与最终在 Unity3d (.NET 2.0) 中运行的此代码兼容。
最佳答案
XmlSerializer
要求所有集合都有一个 Add()
方法,如 documentation 中所述:
The XmlSerializer gives special treatment to classes that implement IEnumerable or ICollection. A class that implements IEnumerable must implement a public
Add
method that takes a single parameter. TheAdd
method's parameter must be of the same type as is returned from theCurrent
property on the value returned fromGetEnumerator
, or one of that type's bases. A class that implements ICollection (such as CollectionBase) in addition to IEnumerable must have a publicItem
indexed property (indexer in C#) that takes an integer, and it must have a publicCount
property of type integer. The parameter to theAdd
method must be the same type as is returned from theItem
property, or one of that type's bases. For classes that implement ICollection, values to be serialized are retrieved from the indexedItem
property, not by callingGetEnumerator
.
此外,如果一个集合有自己的可设置属性,这些将不会被序列化。这也在 docs 中阐明。 :
The following items can be serialized using the XmLSerializer class:
- Classes that implement ICollection or IEnumerable: Only collections are serialized, not public properties.
要了解这在实践中如何发挥作用,请考虑以下类(class):
namespace V1
{
// https://stackoverflow.com/questions/31552724/how-why-does-xmlserializer-treat-a-class-differently-when-it-implements-ilistt
public class Vector2
{
public double X { get; set; }
public double Y { get; set; }
public Vector2() { }
public Vector2(double x, double y)
: this()
{
this.X = x;
this.Y = y;
}
public double this[int coord]
{
get
{
switch (coord)
{
case 0:
return X;
case 1:
return Y;
default:
throw new ArgumentOutOfRangeException();
}
}
set
{
switch (coord)
{
case 0:
X = value;
break;
case 1:
Y = value;
break;
default:
throw new ArgumentOutOfRangeException();
}
}
}
}
}
如果我将其序列化为 XML,我会得到:
<Vector2>
<X>1</X>
<Y>2</Y>
</Vector2>
现在假设我想要一个实现了 IList<double>
的新版本.我添加接口(interface)并实现它,为调整列表大小的所有方法抛出异常:
namespace V2
{
// https://stackoverflow.com/questions/31552724/how-why-does-xmlserializer-treat-a-class-differently-when-it-implements-ilistt
public class Vector2 : V1.Vector2, IList<double>
{
public Vector2() : base() { }
public Vector2(double x, double y) : base(x, y) { }
#region IList<double> Members
public int IndexOf(double item)
{
for (var i = 0; i < Count; i++)
if (this[i] == item)
return i;
return -1;
}
public void Insert(int index, double item)
{
throw new NotImplementedException();
}
public void RemoveAt(int index)
{
throw new NotImplementedException();
}
#endregion
#region ICollection<double> Members
public void Add(double item)
{
throw new NotImplementedException();
}
public void Clear()
{
throw new NotImplementedException();
}
public bool Contains(double item)
{
return IndexOf(item) >= 0;
}
public void CopyTo(double[] array, int arrayIndex)
{
foreach (var item in this)
array[arrayIndex++] = item;
}
public int Count
{
get { return 2; }
}
public bool IsReadOnly
{
get { return true; }
}
public bool Remove(double item)
{
throw new NotImplementedException();
}
#endregion
#region IEnumerable<double> Members
public IEnumerator<double> GetEnumerator()
{
yield return X;
yield return Y;
}
#endregion
#region IEnumerable Members
IEnumerator IEnumerable.GetEnumerator()
{
return GetEnumerator();
}
#endregion
}
}
现在如果我序列化 XML,我得到:
<ArrayOfDouble>
<double>1</double>
<double>2</double>
</ArrayOfDouble>
如您所见,它现在序列化为 double 值的集合,具有可设置的属性 X
和 Y
省略了。然后,反序列化时,Add()
方法将被调用,而不是 X
的 set 方法和 Y
,并抛出异常。
如果我尝试执行 IReadOnlyList<double>
而不是 IList<double>
, XmlSerializer
由于缺少 Add()
,构造函数现在抛出异常方法。
示例 fiddle .
强行没办法XmlSerializer
将集合视为一个简单的对象,而不是 implement IXmlSerializable
和 do it manually ,这是相当繁重的。 ( 有一个 DataContractSerializer
的变通方法,即应用 [DataContract]
而不是 [CollectionDataContract]
—— 但是 DataContractSerializer
直到 .Net 3.5 才被引入,所以它被淘汰了。)
而不是实现 IList<T>
,您可能只想引入一个扩展方法来遍历类中的值,如下所示:
public static class Vector2Extensions
{
public static IEnumerable<double> Values(this Vector2 vec)
{
if (vec == null)
throw new ArgumentNullException();
yield return vec.X;
yield return vec.Y;
}
}
关于c# - XmlSerializer 在实现 IList<T> 时如何/为什么以不同方式对待类?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31552724/
背景: 我最近一直在使用 JPA,我为相当大的关系数据库项目生成持久层的轻松程度给我留下了深刻的印象。 我们公司使用大量非 SQL 数据库,特别是面向列的数据库。我对可能对这些数据库使用 JPA 有一
我已经在我的 maven pom 中添加了这些构建配置,因为我希望将 Apache Solr 依赖项与 Jar 捆绑在一起。否则我得到了 SolarServerException: ClassNotF
interface ITurtle { void Fight(); void EatPizza(); } interface ILeonardo : ITurtle {
我希望可用于 Java 的对象/关系映射 (ORM) 工具之一能够满足这些要求: 使用 JPA 或 native SQL 查询获取大量行并将其作为实体对象返回。 允许在行(实体)中进行迭代,并在对当前
好像没有,因为我有实现From for 的代码, 我可以转换 A到 B与 .into() , 但同样的事情不适用于 Vec .into()一个Vec . 要么我搞砸了阻止实现派生的事情,要么这不应该发
在 C# 中,如果 A 实现 IX 并且 B 继承自 A ,是否必然遵循 B 实现 IX?如果是,是因为 LSP 吗?之间有什么区别吗: 1. Interface IX; Class A : IX;
就目前而言,这个问题不适合我们的问答形式。我们希望答案得到事实、引用资料或专业知识的支持,但这个问题可能会引发辩论、争论、投票或扩展讨论。如果您觉得这个问题可以改进并可能重新打开,visit the
我正在阅读标准haskell库的(^)的实现代码: (^) :: (Num a, Integral b) => a -> b -> a x0 ^ y0 | y0 a -> b ->a expo x0
我将把国际象棋游戏表示为 C++ 结构。我认为,最好的选择是树结构(因为在每个深度我们都有几个可能的移动)。 这是一个好的方法吗? struct TreeElement{ SomeMoveType
我正在为用户名数据库实现字符串匹配算法。我的方法采用现有的用户名数据库和用户想要的新用户名,然后检查用户名是否已被占用。如果采用该方法,则该方法应该返回带有数据库中未采用的数字的用户名。 例子: “贾
我正在尝试实现 Breadth-first search algorithm , 为了找到两个顶点之间的最短距离。我开发了一个 Queue 对象来保存和检索对象,并且我有一个二维数组来保存两个给定顶点
我目前正在 ika 中开发我的 Python 游戏,它使用 python 2.5 我决定为 AI 使用 A* 寻路。然而,我发现它对我的需要来说太慢了(3-4 个敌人可能会落后于游戏,但我想供应 4-
我正在寻找 Kademlia 的开源实现C/C++ 中的分布式哈希表。它必须是轻量级和跨平台的(win/linux/mac)。 它必须能够将信息发布到 DHT 并检索它。 最佳答案 OpenDHT是
我在一本书中读到这一行:-“当我们要求 C++ 实现运行程序时,它会通过调用此函数来实现。” 而且我想知道“C++ 实现”是什么意思或具体是什么。帮忙!? 最佳答案 “C++ 实现”是指编译器加上链接
我正在尝试使用分支定界的 C++ 实现这个背包问题。此网站上有一个 Java 版本:Implementing branch and bound for knapsack 我试图让我的 C++ 版本打印
在很多情况下,我需要在 C# 中访问合适的哈希算法,从重写 GetHashCode 到对数据执行快速比较/查找。 我发现 FNV 哈希是一种非常简单/好/快速的哈希算法。但是,我从未见过 C# 实现的
目录 LRU缓存替换策略 核心思想 不适用场景 算法基本实现 算法优化
1. 绪论 在前面文章中提到 空间直角坐标系相互转换 ,测绘坐标转换时,一般涉及到的情况是:两个直角坐标系的小角度转换。这个就是我们经常在测绘数据处理中,WGS-84坐标系、54北京坐标系
在软件开发过程中,有时候我们需要定时地检查数据库中的数据,并在发现新增数据时触发一个动作。为了实现这个需求,我们在 .Net 7 下进行一次简单的演示. PeriodicTimer .
二分查找 二分查找算法,说白了就是在有序的数组里面给予一个存在数组里面的值key,然后将其先和数组中间的比较,如果key大于中间值,进行下一次mid后面的比较,直到找到相等的,就可以得到它的位置。
我是一名优秀的程序员,十分优秀!