码迷,mamicode.com
首页 > 编程语言 > 详细

CArray动态数组

时间:2017-10-08 18:11:20      阅读:127      评论:0      收藏:0      [点我收藏+]

标签:mfc   动态数组   

	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动态数组

标签:mfc   动态数组   

原文地址:http://9233403.blog.51cto.com/9223403/1970697

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!