// arry.cpp : 定义控制台应用程序的入口点。
//
#include "stdafx.h"
#include "arry.h"
#ifdef _DEBUG
#define new DEBUG_NEW
#endif
#include <iostream>
using namespace std;
class CTest
{
public:
CTest(){};
~CTest(){};
public:
void TestFun()
{
cout<<"测试\n";
};
};
// 唯一的应用程序对象
CWinApp theApp;
int _tmain(int argc, TCHAR* argv[], TCHAR* envp[])
{
int nRetCode = 0;
// 初始化 MFC 并在失败时显示错误
if (!AfxWinInit(::GetModuleHandle(NULL), NULL, ::GetCommandLine(), 0))
{
// TODO: 更改错误代码以符合您的需要
_tprintf(_T("错误: MFC 初始化失败\n"));
nRetCode = 1;
}
else
{
CArray<CString , CString&> arrStr; //CArray 模板可以添加除标准数据类型,
int i;
CString strTmp;
for (i = 0 ; i < 6; i++)
{
strTmp.Format(_T("%d"), i);
arrStr.Add(strTmp);//末未添加元素
}
for(i = 0;i < arrStr.GetSize(); i++)
{
AfxMessageBox(arrStr.GetAt(i));
}
CArray<CTest,CTest&> arrTest;//还可以添加自定义的类,或者数据结构。
CTest test;
arrTest.Add(test);
for (i = 0; i < arrTest.GetSize(); i++)
{
arrTest.GetAt(i).TestFun();
}
}
return nRetCode;
}