使用向下转换浅复制列表
我的类继承如下
CEntity---->CNode--->CElement
我有一个
class Nodes : List<Cnode>
Node 类,其中
Class Elements : List<Element>
包含不同项目中常见的公共项 元素类具有特定于项目的项目。
我必须将元素列表浅复制到节点列表中(基本上将元素向下转换为节点)
I have the class herichary as follows
CEntity---->CNode--->CElement
I have a
class Nodes : List<Cnode>
and
Class Elements : List<Element>
Node class contain common item common across different project
Element class has item specific to a project.
I have to shallow copy the element list into the node list (basically down casting the elements to nodes)
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
假设您使用的是 .net 3.0 或更高版本,以下代码将创建一个新列表,其中相同的元素向下转换为 CNode:
然后(如果尚未存在)您应该创建一个采用
List
的构造函数在 Nodes 类中执行以下操作:Supposing you are using .net 3.0 or greater, the following code creates a NEW list with the SAME elements downcasted to CNodes:
Then (if not already present) you should create a constructor taking a
List<CNode>
in Nodes class and do:你可以这样做:
其中 elements 是一个 List。
您无需担心强制转换回 CNode,因为 CElement 继承自 CNode。需要注意的重要一点是,节点列表中的元素(在上面的示例中)实际上是 CElement 的实例。如果您想要 CNode,您可能必须使用复制构造函数创建一个新的 CNode 实例:
并添加一个新的 CNode 实例:
You could just do this:
Where elements is a List.
You don't need to worry about casting back to CNode, because CElement inherits from that. The important thing to note is that the elements in the nodes list (in the example above), are in fact instances of CElement. If you wanted CNode you'd probably have to create a new instance of CNode using a copy constructor:
And add a new instance of CNode:
您可以在 LINQ 中使用 Cast 运算符。
You can use the Cast operator in LINQ.
我所做的是
,
但是这种方法会存在任何性能/内存问题吗?
What I have done is
and
but will there be any performance/ memory issue in this approach.