
集合类具有各种用途,例如动态分配内存给元素,根据索引访问项目列表等。
以下是Collections中的类:
1ArrayList
它表示一个可以单独索引的对象的有序集合。
2Hashtable
它使用键来访问集合中的元素。
3SortedList
它使用键和索引来访问列表中的项。
4Stack
它表示一个后进先出的对象集合。
5Queue
它表示一个先进先出的对象集合。
6BitArray
它表示使用值1和0的二进制表示的数组。
让我们看一个C#中BitArray类的例子:
例子
在线演示
using System;using System.Collections;namespace CollectionsApplication { class Program { static void Main(string[] args) { //creating two bit arrays of size 8 BitArray ba1 = new BitArray(8); BitArray ba2 = new BitArray(8); byte[] a = { 60 }; byte[] b = { 13 }; //storing the values 60, and 13 into the bit arrays ba1 = new BitArray(a); ba2 = new BitArray(b); //content of ba1 Console.WriteLine("Bit array ba1: 60"); for (int i = 0; i < ba1.Count; i++) { Console.Write("{0, -6} ", ba1[i]); } Console.WriteLine(); //content of ba2 Console.WriteLine("Bit array ba2: 13"); for (int i = 0; i < ba2.Count; i++) { Console.Write("{0, -6} ", ba2[i]); } Console.WriteLine(); BitArray ba3 = new BitArray(8); ba3 = ba1.And(ba2); //content of ba3 Console.WriteLine("Bit array ba3 after AND operation: 12"); for (int i = 0; i < ba3.Count; i++) { Console.Write("{0, -6} ", ba3[i]); } Console.WriteLine(); ba3 = ba1.Or(ba2); //content of ba3 Console.WriteLine("Bit array ba3 after OR operation: 61"); for (int i = 0; i < ba3.Count; i++) { Console.Write("{0, -6} ", ba3[i]); } Console.WriteLine(); Console.ReadKey(); } }}
输出
Bit array ba1: 60False False True True True True False FalseBit array ba2: 13True False True True False False False FalseBit array ba3 after AND operation: 12False False True True False False False FalseBit array ba3 after OR operation: 61True False True True False False False False
以上就是C# 中的集合类是什么?的详细内容,更多请关注创想鸟其它相关文章!
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。
如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至 chuangxiangniao@163.com 举报,一经查实,本站将立刻删除。
发布者:程序猿,转转请注明出处:https://www.chuangxiangniao.com/p/1435234.html
微信扫一扫
支付宝扫一扫