资源简介

C++实现中英文与UNICODE十六进制字符串互转 实现 "中文English" --> "4e2d65870045006e0067006c006900730068" 和 "4e2d65870045006e0067006c006900730068" --> "中文English" 这么一个转换,上述的都是字符串。 附件是MFC编写的转换测试程序,及其源码。 源码在PC和WINCE下都测试通过

资源截图

代码片段和文件信息

#include “StdAfx.h“
#include “IntArray.h“

CIntArray::CIntArray(void)
{
intArry = NULL;
size = 0;
}

CIntArray::~CIntArray(void)
{
if(intArry != NULL){
free(intArry);
intArry = NULL;
}
}

//********************************************************************
// Function : GetSize
// Description : get int array size
// Input : NONE
// Output : NONE
// return : int array size
//********************************************************************
int CIntArray::GetSize()
{
return this->size;
}

//********************************************************************
// Function : GetAt
// Description : get data in array
// Input : index : index must > 0 and < the array size
// Output : NONE
// return : the data in array which index is the same 

 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件      53248  2012-04-20 12:19  Test\release\Test.exe

     文件       1071  2011-12-22 15:44  Test\Test\IntArray.cpp

     文件        294  2011-12-22 15:45  Test\Test\IntArray.h

     文件       2709  2011-11-24 17:02  Test\Test\ReadMe.txt

     文件      21630  2005-09-23 09:25  Test\Test\res\Test.ico

     文件        360  2011-11-24 17:02  Test\Test\res\Test.rc2

     文件        952  2012-01-13 14:41  Test\Test\resource.h

     文件        135  2011-11-24 17:02  Test\Test\stdafx.cpp

     文件       2489  2011-11-24 17:02  Test\Test\stdafx.h

     文件      58800  2012-04-20 12:18  Test\Test\Test.aps

     文件       1623  2011-11-24 17:02  Test\Test\Test.cpp

     文件        429  2011-11-24 17:02  Test\Test\Test.h

     文件       5457  2012-04-20 12:18  Test\Test\Test.rc

     文件       5583  2012-04-20 12:17  Test\Test\Test.vcproj

     文件       1413  2012-04-20 12:19  Test\Test\Test.vcproj.BRANTYOU.brantyou.user

     文件       1427  2011-12-01 15:12  Test\Test\Test.vcproj.PC-20110516DYHH.brantyou.user

     文件       5466  2012-04-20 12:17  Test\Test\TestDlg.cpp

     文件        872  2012-04-20 12:14  Test\Test\TestDlg.h

     文件       4446  2012-02-29 15:15  Test\Test\YCodec.cpp

     文件        826  2012-02-29 15:15  Test\Test\YCodec.h

     文件      39481  2012-01-16 15:43  Test\Test\YString.cpp

     文件       4493  2012-01-16 15:31  Test\Test\YString.h

     文件        877  2011-11-24 17:02  Test\Test.sln

    ..A..H.     24064  2012-04-20 12:19  Test\Test.suo

     目录          0  2012-04-20 12:13  Test\Test\res

     目录          0  2012-04-20 12:19  Test\release

     目录          0  2012-04-20 12:19  Test\Test

     目录          0  2012-04-20 12:19  Test

----------- ---------  ---------- -----  ----

               238145                    28

............此处省略1个文件信息

评论

共有 条评论