[배움]/Visual Studio

CString 와 Cstringarray

도영수 2016. 3. 11. 13:54

https://msdn.microsoft.com/en-us/library/aa315043(v=vs.60).aspx



CStrings 관련

Public Methods

Name

Description

CObArray::Add

Adds an element to the end of the array; grows the array if necessary.

CObArray::Append

Appends another array to the array; grows the array if necessary.

CObArray::Copy

Copies another array to the array; grows the array if necessary.

CObArray::ElementAt

Returns a temporary reference to the element pointer within the array.

CObArray::FreeExtra

Frees all unused memory above the current upper bound.

CObArray::GetAt

Returns the value at a given index.

CObArray::GetCount

Gets the number of elements in this array.

CObArray::GetData

Allows access to elements in the array. Can be NULL.

CObArray::GetSize

Gets the number of elements in this array.

CObArray::GetUpperBound

Returns the largest valid index.

CObArray::InsertAt

Inserts an element (or all the elements in another array) at a specified index.

CObArray::IsEmpty

Determines if the array is empty.

CObArray::RemoveAll

Removes all the elements from this array.

CObArray::RemoveAt

Removes an element at a specific index.

CObArray::SetAt

Sets the value for a given index; array not allowed to grow.

CObArray::SetAtGrow

Sets the value for a given index; grows the array if necessary.

CObArray::SetSize

Sets the number of elements to be contained in this array.


'[배움] > Visual Studio' 카테고리의 다른 글

char 를 String 변환  (0) 2016.03.14
유니코드 개발 관련  (0) 2016.03.11
c언어 . / -> 의 사용법  (0) 2016.03.11
SetWindowPos  (0) 2016.03.10
문자열 관련 함수들  (0) 2016.03.07