扫一扫
分享文章到微信
扫一扫
关注官方公众号
至顶头条
class MyClass { public object this [int index] { get { // 取数据 } set { // 存数据 } } } |
class MyClass { public object get_Item(int index) { // 取数据 } public void set_Item(int index, object value) { //存数据 } } |
using System; class BitArray { int[] bits; int length; public BitArray(int length) { if (length < 0) throw new ArgumentException(); bits = new int[((length - 1) >> 5) + 1]; this.length = length; } public int Length { get { return length; } } public bool this[int index] { get { if (index < 0 || index >= length) throw new IndexOutOfRangeException(); else return (bits[index >> 5] & 1 << index) != 0; } set { if (index < 0 || index >= length) throw new IndexOutOfRangeException(); else if(value) bits[index >> 5] |= 1 << index; else bits[index >> 5] &= ~(1 << index); } } } class Test { static void Main() { BitArray Bits=new BitArray(10); for(int i=0;i<10;i++) Bits[i]=(i%2)==0; Console.Write(Bits[i]+" "); } } |
如果您非常迫切的想了解IT领域最新产品与技术信息,那么订阅至顶网技术邮件将是您的最佳途径之一。
现场直击|2021世界人工智能大会
直击5G创新地带,就在2021MWC上海
5G已至 转型当时——服务提供商如何把握转型的绝佳时机
寻找自己的Flag
华为开发者大会2020(Cloud)- 科技行者