使用泛型可以实现这一点吗?时间:2019-03-17 标签:c#
我知道我可以通过创建自定义类来解决以下问题,但是以下内容可以强类型化为 List
(或任何其他类型)吗?
var x = new object[]
{
new object[] { new Image(), new TextBox(), new FileUpload() },
new object[] { new Image(), new TextBox() , new FileUpload()}
};
上面代码中的对象类型只是举例。
一天结束了,我的大脑变得有点软了。
编辑:元组?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(6)
是的,通用元组可以工作:
http://sankarsan .wordpress.com/2009/11/29/tuple-in-c-4-0/
Yep, generic Tuples would work:
http://sankarsan.wordpress.com/2009/11/29/tuple-in-c-4-0/
您没有指定,但看起来您正在使用 System.Web 中的类型?如果是这样,那么可以使用泛型来创建更强类型的集合。例如,
为了获得一个非常强类型的集合,您需要生成
Tuple<>
或匿名类型解决方案。You didn't specify but it looks like you are using the types from System.Web? If so then yes generics can be used to create a more strongly typed collection. For example
In order to get a very strongly typed collection though you'll need to result to
Tuple<>
or an anonymous type solution.你可以像你说的那样使用元组。或者匿名类型:
You can use Tuple as you say. Or anonymous type:
匿名对象是强类型的。
唯一的问题是您无法知道类型名称(不是直接知道)。
拿这个例子(对不起,如果太长了):
它输出:
每个匿名对象组合都有自己的名称并定义唯一的类型。
使用相同类型和类型名称声明的对象将具有相同的类型,如“x == x2”。
不过,最初的示例很棘手,因为它定义了内部包含“object[]”数组的“object[]”数组。
这样,
所有的类型(object[])都会相同,并且比较将始终通过比较指针来完成,希望有所不同。
将输出:
看到问题了吗?
Anonymous objects are strongly typed.
The only concern is that you can't know the type name (not directly).
Take this example (sorry if it is too long):
It outputs:
Each anonymous object composition has its own name and defines an unique type.
Objects declared with the same types and type names go to the same type, as in "x == x2".
The original example, though, is tricky, as it defines "object[]" arrays with "object[]" arrays inside.
This way
Will all be the same type (object[]), and the comparison will be allways done by comparing pointers, that will, hopefuly, differ.
Will output:
See the gotcha?
如果您使用的是框架 4,则
Tuple[]
或List>
即可解决问题。否则,您可以使用匿名类型,尽管除此之外可能会很尴尬(因为您无法在有用的情况下声明该类型)。
最后,自行构建并不是最棘手的结构。
A
Tuple<Image, TextBox, FileUpload>[]
or perhapsList<Tuple<Image, TextBox, FileUpload>>
will do the trick if you are using framework 4.Otherwise you could use an anonymous type, though it can be awkward beyond that (since you can't declare the type in cases where that is useful).
Finally, it's not the trickiest structure to just roll your own.