什么是阵列的通用替代? [英] What is the generic alternative of Array?

查看:128
本文介绍了什么是阵列的通用替代?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

在C#中一些集合,如的ArrayList 的HashTable 有仿制药这是名单,其中; T> 词典< TKEY的,TValue>

In C# some collections such as ArrayList and HashTable have generic alternatives which are List<T> and Dictionary<TKey, TValue>.

阵列是否也有一个通用的替代方案?

推荐答案

如果你正在寻找最相近的数组泛型集合类型,那么你可能需要一个名单,其中,T&GT; 。但它不是真正的同样的事情。

If you're looking for the generic collection type that most closely resembles an array, then you probably want a List<T>. But it's not really the same thing.

要扩大其他人所说的:有泛型类型的一点是,这样程序员就可以使用的特定类型的的那些泛型类型的实例,根据当前方案的需求。数组是的的特定类型的。你总是可以只取一 T []

To expand on what others have said: the point of having generic types is so that a programmer can then use type-specific instances of those generic types, based on the needs of the current program. Arrays are already type-specific. You can always just take a T[].

例如,看一下这个简单的函数定义:

For example, look at this simple function definition:

void SomeFunction(int[] x) 

您也可以认为它是这样的:

You could also think of it like this:

void SomeFunction<T>(T[] x) 

,其中程序员只选择了与调用它 INT 的类型参数:

SomeFunction<int>(myIntArray)

这篇关于什么是阵列的通用替代?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆