動的配列の実装


  コンストラクタ と デストラクタ




  

メンバ変数として以下の変数を定義し、コンストラクタで初期化、デストラクタで終了処理を行います。
pArray には動的に確保したメモリのポインタをセットし、nSize には確保した int のサイズの個数
をセットします

void *pArray;
int nSize;
  

  

// *********************************************************
// コンストラクタ
// *********************************************************
Integer::Integer()
{
	nData = 0;
	pArray = NULL;
	nSize = 0;
}
// *********************************************************
// 拡張コンストラクタ ( 初期値設定 )
// *********************************************************
Integer::Integer( int a )
{
	nData = a;
	pArray = NULL;
	nSize = 0;
}

// *********************************************************
// デストラクタ
// *********************************************************
Integer::~Integer()
{
	if ( pArray != NULL ) {
		GlobalFree( (HGLOBAL)pArray );
	}
}
  

  添字オペレータの実装




  

// *********************************************************
// 動的配列の実装
// nIndex が 負の値の場合は 0 とみなします
// *********************************************************
int& Integer::operator[]( int nIndex )
{
	if ( nIndex < 0 ) {
		nIndex = 0;
	}
	if ( this->pArray == NULL ) {
		this->pArray = 
			GlobalAlloc(
				GMEM_FIXED | GMEM_ZEROINIT,
				(nIndex+1)*sizeof( int ) + 16
			);
		this->nSize = nIndex + 1;
	}
	else {
		if ( nIndex > this->nSize ) {
			void *pCopy;
			pCopy = 
				GlobalAlloc(
					GMEM_FIXED | GMEM_ZEROINIT,
					(nIndex+1)*sizeof( int ) + 16
				);
			memcpy( pCopy, this->pArray, this->nSize*sizeof( int ) );
			GlobalFree( (HGLOBAL)this->pArray );
			this->pArray = pCopy;
			this->nSize = nIndex + 1;
		}
	}

	return *(((int *)(this->pArray))+nIndex);
}
  
このオペレータの定義で重要なのは、型を int& で定義しているところです。
この & は、実体の参照を意味しますが通常のポインタとは違います。定義内では
実体そのものを指し示すので、左辺値として代入が可能となります。

以下に実行例を示します
  

Integer a;
int i;

a[5] = 123;

for( i = 0; i <= a.nSize-1; i++ ) {
	printf( "%d\n", a[i] );
}

a[10] = 123;

for( i = 0; i <= a.nSize-1; i++ ) {
	printf( "%d\n", a[i] );
}
  
デバッグ用に以下のメソツドを実装します
  

// *********************************************************
// 動的配列のコンソール表示
// *********************************************************
Integer::printArray()
{
	int i;

	for( i = 0; i <= this->nSize-1; i++ ) {
		printf( "%3d : %d\n", i, this->operator [] ( i ) );
	}
}
  

  

Integer a;

a[5] = 123;

a.printArray();

a[10] = 123;

a.printArray();
  




yahoo  google  MSDN  MSDN(us)  WinFAQ  Win Howto  tohoho  ie_DHTML  vector  wdic  辞書  天気 


[classStyle]
claudebot
24/04/19 03:29:48
InfoBoard Version 1.00 : Language=Perl

1 BatchHelper COMprog CommonSpec Cprog CprogBase CprogSAMPLE CprogSTD CprogSTD2 CprogWinsock Cygwin GameScript HTML HTMLcss InstallShield InstallShieldFunc JScript JScriptSAMPLE Jsfuncs LLINK OldProg OracleGold OracleSilver PRO PRObrowser PROc PROconePOINT PROcontrol PROftpclient PROjscript PROmailer PROperl PROperlCHAT PROphp PROphpLesson PROphpLesson2 PROphpLesson3 PROphpfunction PROphpfunctionArray PROphpfunctionMisc PROphpfunctionString PROsql PROvb PROvbFunction PROvbString PROvbdbmtn PROvbonepoint PROwebapp PROwin1POINT PROwinSYSTEM PROwinYOROZU PROwindows ProjectBoard RealPHP ScriptAPP ScriptMaster VBRealtime Vsfuncs a1root access accreq adsi ajax amazon argus asp aspSample aspVarious aspdotnet aw2kinst cappvariety centura ckeyword classStyle cmaterial cmbin cmdbapp cmenum cmlang cmlistbox cmstd cmstdseed cmtxt cs daz3d db dbCommon dbaccess dnettool dos download flex2 flex3 flex4 framemtn framereq freeWorld freesoft gimp ginpro giodownload google hdml home hta htmlDom ie9svg install java javaSwing javascript jetsql jquery jsp jspTest jspVarious lightbox listasp listmsapi listmsie listmsiis listmsnt listmspatch listmsscript listmsvb listmsvc memo ms msde mysql netbeans oraPlsql oracle oracleWiper oraclehelper orafunc other panoramio pear perl personal pgdojo pgdojo_cal pgdojo_holiday pgdojo_idx pgdojo_ref pgdojo_req php phpVarious phpguide plsql postgres ps r205 realC realwebapp regex rgaki ruby rule sboard sc scprint scquest sdb sdbquest seesaa setup sh_Imagick sh_canvas sh_dotnet sh_google sh_tool sh_web shadowbox shgm shjquery shvbs shweb sjscript skadai skywalker smalltech sperl sqlq src systemdoc tcpip tegaki three toolbox twitter typeface usb useXML vb vbdb vbsfunc vbsguide vbsrc vpc wcsignup webanymind webappgen webclass webparts webtool webwsh win8 winofsql wmi work wp youtube