Data
-
MFCData/string 2008. 12. 20. 23:08
CString .IsEmpty() .GetLength() .Empty() .Delete() .Replace() .LoadString() .GetBuffer() .GetBufferSetLength() .ReleaseBuffer() .+() CString strData[] = {_T("SUN"), _T("MON"), _T("TUE"), _T("WED"), _T("THU"),_T("FRI"), _T("SAT") }; void CComboBox::GetLBText(int nIndex, CString& rString) const { ASSERT(::IsWindow(m_hWnd)); GetLBText(nIndex, rString.GetBufferSetLength(GetLBTextLen(nIndex))); rStri..
-
MFCData/Container 2008. 12. 20. 23:02
템플릿 컬렉션 클래스에 사용자 정의 클래스를 저장 생성자 함수 .==()를 오버로딩 C{XXX}Array // vector? CArray CTypedPtrArray 소멸시 포인터가 가리키고 있는 아이템을 삭제하지 않는다. .SetSize() .GetSize() .InsertAt() .RemoveAt() .RemoveAll() .Add() .[]() #include CUIntArray array; or CArray array; array.SetSize(10); for(int i=0 ; i