CArray动态数组
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了CArray动态数组相关的知识,希望对你有一定的参考价值。
CArray<int ,int> a;//定义数组 a.SetSize(8,-1); //设置内存大小,按16字节增长 int index1 = a.Add(10);//添加元素自动放到数组末尾,返回元素索引 int index2 = a.Add(201); int nSize = a.GetSize(); //获取空间大小 int nCount = a.GetCount(); int nCount1 = a.GetUpperBound(); int e1 = a[0]; //以数组下标的方式读元数,此位置未曾赋值,返回为0 int e2 = a[1]; //以数组下标的方式读元数,此位置未曾赋值,返回为0 a[0] = 200; a[1] = 300; //以数组下标的方式写元示 CString str1,str2; str1.Format(_T("%d\n"),a[0]); str2.Format(_T("%d\n"),a[1]); TRACE(str1); TRACE(str2);
以上是关于CArray动态数组的主要内容,如果未能解决你的问题,请参考以下文章