用 C# 为 ArrayList 创建一个只读包装
为了为 ArrayList 创建只读包装,代码如下所示 −
示例
using System;
using System.Collections;
public class Demo {
public static void Main(){
ArrayList list = new ArrayList();
list.Add("One");
list.Add("Two");
list.Add("Three");
list.Add("Four");
list.Add("Five");
list.Add("Six");
list.Add("Seven");
list.Add("Eight");
Console.WriteLine("ArrayList elements...");
foreach(string str in list){
Console.WriteLine(str);
}
Console.WriteLine("ArrayList is read-only? = "+list.IsReadOnly);
}
}输出
这将生成以下输出 −
ArrayList elements... One Two Three Four Five Six Seven Eight ArrayList is read-only? = False
示例
现在我们再看另一个示例 −
using System;
using System.Collections;
public class Demo {
public static void Main(){
ArrayList list = new ArrayList();
list.Add("One");
list.Add("Two");
list.Add("Three");
list.Add("Four");
list.Add("Five");
list.Add("Six");
list.Add("Seven");
list.Add("Eight");
Console.WriteLine("ArrayList elements...");
foreach(string str in list){
Console.WriteLine(str);
}
Console.WriteLine("ArrayList is read-only? = "+list.IsReadOnly);
ArrayList list2 = ArrayList.ReadOnly(list);
Console.WriteLine("ArrayList is read-only now? = "+list2.IsReadOnly);
}
}输出
这将生成以下输出 −
ArrayList elements... One Two Three Four Five Six Seven Eight ArrayList is read-only? = False ArrayList is read-only now? = True
广告
数据结构
网络
关系型数据库管理系统
操作系统
Java
iOS
HTML
CSS
Android
Python
C 编程
C++
C#
MongoDB
MySQL
Javascript
PHP