CObArray::Copy
지정 된 배열의 요소를 동일한 유형의 다른 배열의 요소를 덮어쓰려면이 멤버 함수를 호출 합니다.
void Copy(
const CObArray& src
);
매개 변수
- src
원본 요소를 배열에 복사 합니다.
설명
복사 ; 메모리를 해제 하지 않습니다 그러나, 필요한 경우 복사 배열에 복사 된 요소를 수용 하기 위해 추가 메모리를 할당할 수 있습니다.
다음 표에서 다른 멤버와 비슷한 함수를 보여 줍니다. CObArray::Copy.
클래스 |
멤버 함수 |
---|---|
복사 취소 (const CByteArray & src ); |
|
복사 취소 (const CDWordArray & src ); |
|
복사 취소 (const 해당 클래스가 & src ); |
|
복사 취소 (const CStringArray & src ); |
|
복사 취소 (const CUIntArray & src ); |
|
복사 취소 (const CWordArray & src ); |
예제
참조 하십시오 CObList::CObList 에 CAge 모든 컬렉션 예제에 사용 되는 클래스입니다.
CObArray myArray1, myArray2;
// Add elements to the second array.
myArray2.Add(new CAge(21));
myArray2.Add(new CAge(42));
// Copy the elements from the second array to the first.
myArray1.Copy(myArray2);
#ifdef _DEBUG
afxDump.SetDepth(1);
afxDump << "myArray1: " << &myArray1 << "\n";
afxDump << "myArray2: " << &myArray2 << "\n";
#endif
요구 사항
헤더: afxcoll.h