Article ID: 156591 - Last Review: January 18, 2006 - Revision: 5.1 How to use the deque::begin and deque:end STL functions in Visual C++This article was previously published under Q156591 On This PageSUMMARY The sample code below illustrates how to use the
deque::begin and deque::end STL functions in Visual C++. MORE INFORMATIONRequired headerPrototypeDescriptionThe begin member function returns a random-access iterator that points at the first element of the sequence, or just beyond the end of an empty sequence.The end member function returns a random-access iterator that points just beyond the end of the sequence. Sample codeNote In the first line of the sample code section, /GX is equivalent to /EHsc in Visual C++ .NET or in Visual C ++ 2005 and is set by default.1 2 3 4 5 815644
(http://support.microsoft.com/kb/815644/
)
INFO: Most common causes of C1010 error
REFERENCES For the same topic about deque::begin and deque::end, visit
the following MSDN Web site:
http://msdn.microsoft.com/en-us/library/1ew0xf3z.aspx
(http://msdn.microsoft.com/en-us/library/1ew0xf3z.aspx)
APPLIES TO
| Article Translations
|
Back to the top
