Simple CArray questions
Posted
by Holli
on Stack Overflow
See other posts from Stack Overflow
or by Holli
Published on 2010-05-05T13:33:54Z
Indexed on
2010/05/05
13:38 UTC
Read the original article
Hit count: 162
1.) What is the difference between
CArray <SomeClass> collection;
and
CArray <SomeClass,SomeClass> collection;
or even
CArray <SomeClass* ,SomeClass* > collection;
?
2.) While reading some comments on Stackoverflow I came to a note saying "Don't use CArray". Why should CArray not be used?
© Stack Overflow or respective owner