• 首页 首页 icon
  • 工具库 工具库 icon
    • IP查询 IP查询 icon
  • 内容库 内容库 icon
    • 快讯库 快讯库 icon
    • 精品库 精品库 icon
    • 问答库 问答库 icon
  • 更多 更多 icon
    • 服务条款 服务条款 icon

什么是阵列的通用替代

用户头像
it1352
帮助1

问题说明

在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>.

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

正确答案

#1

如果你正在寻找最相近的数组泛型集合类型,那么你可能需要一个名单,其中,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)

这篇好文章是转载于:学新通技术网

  • 版权申明: 本站部分内容来自互联网,仅供学习及演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,请提供相关证据及您的身份证明,我们将在收到邮件后48小时内删除。
  • 本站站名: 学新通技术网
  • 本文地址: /reply/detail/tanhcfffjc
系列文章
更多 icon
同类精品
更多 icon
继续加载