00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033 #include "CommonFramework.h"
00034
00035
00036
00037
00038 class TTest
00039 {
00040 public:
00041 TTest();
00042 TTest(TInt aValue);
00043 void SetValue(TInt aValue);
00044 TInt GetValue() const;
00045 private :
00046 TInt iX;
00047 TBuf<8> iPadding;
00048 };
00049
00050 TTest::TTest()
00051 : iX(1)
00052 {}
00053
00054 TTest::TTest(TInt aValue)
00055 : iX(aValue)
00056 {}
00057
00058 TInt TTest::GetValue() const
00059 {
00060 return iX;
00061 }
00062
00063 void TTest::SetValue(TInt aValue)
00064 {
00065 iX = aValue;
00066 }
00067
00068
00069
00070
00071 class CTest : public CBase
00072 {
00073 public:
00074 static CTest* NewL(const TDesC& aText);
00075 ~CTest();
00076 void ConstructL(const TDesC& aText);
00077 private :
00078 HBufC* iSomeText;
00079 };
00080
00081 CTest* CTest::NewL(const TDesC& aText)
00082 {
00083 CTest* self=new (ELeave) CTest;
00084 CleanupStack::PushL(self);
00085 self->ConstructL(aText);
00086 CleanupStack::Pop();
00087 return self;
00088 }
00089
00090 void CTest::ConstructL(const TDesC& aText)
00091 {
00092 iSomeText = aText.AllocL();
00093 }
00094
00095 CTest::~CTest()
00096 {
00097 delete iSomeText;
00098 }
00099
00100
00101
00102
00103 const TTest data[] = {TTest(1),TTest(2),TTest(3),TTest(4)};
00104
00105
00106
00107
00108 static void doExampleL()
00109 {
00110
00111
00112
00113
00114
00115
00116 TFixedArray<TTest,4> array;
00117
00118
00119
00120
00121
00122
00123
00124 array.Copy(&data[0],4);
00125
00126
00127
00128
00129
00130
00131
00132
00133
00134
00135
00136
00137 _LIT(KTxtFormat1,"Array size is %d\n");
00138 console->Printf(KTxtFormat1,array.Count());
00139
00140
00141
00142
00143
00144 _LIT(KTxtFormat2,"Length of an array element is %d\n\n");
00145 console->Printf(KTxtFormat2,array.Length());
00146
00147
00148
00149
00150 _LIT(KTxtFormat3,"Array ends at ---> 0x%x\n starts at ---> 0x%x\n");
00151 _LIT(KTxtFormat4,"Difference is decimal %d bytes (hopefully 4 times the size of TTest)\n\n");
00152 console->Printf(KTxtFormat3,array.End(),array.Begin());
00153 console->Printf(KTxtFormat4,((TUint8*)array.End() - (TUint8*)array.Begin()));
00154
00155
00156
00157
00158
00159 array.At(1).SetValue(100);
00160
00161
00162
00163
00164
00165 array[1].SetValue(99);
00166
00167
00168
00169
00170
00171
00172
00173
00174
00175
00176
00177
00178
00179
00180 _LIT(KTxtFormat5,"The new 3rd element has value %d\n\n");
00181 TTest x(256);
00182 array.At(2) = x;
00183 console->Printf(KTxtFormat5,array.At(2).GetValue());
00184
00185
00186
00187
00188
00189
00190
00191
00192
00193 TArray<TTest> generic = array.Array();
00194
00195 _LIT(KTxtFormat6,"Array size as reported by TArray's Count() is %d\n\n");
00196 console->Printf(KTxtFormat6,generic.Count());
00197
00198
00199
00200 _LIT(KTxtFormat7,"Value contained in the 2nd TTest element of\nthe array using TArray's operator[] is %d\n\n");
00201 console->Printf(KTxtFormat7,generic[1].GetValue());
00202
00203
00204
00205
00206
00207
00208
00209
00210
00211
00212
00213
00214 TFixedArray<CTest*,4> ptrarray;
00215
00216
00217
00218
00219
00220
00221
00222
00223
00224 _LIT(KTxtDefault,"Default text");
00225 _LIT(KTxtState1,"The 4 elements are: ");
00226 _LIT(KTxtState2,"After Reset() they are: ");
00227 _LIT(KTxtNewLine,"\n");
00228 _LIT(KTxtFormat8,"0x%08x ");
00229
00230 CTest* ptr;
00231 TInt ix;
00232 for (ix = 0; ix<4; ix++)
00233 {
00234 ptr = CTest::NewL(KTxtDefault);
00235 ptrarray.At(ix) = ptr;
00236 }
00237
00238 console->Printf(KTxtState1);
00239 for (ix = 0; ix<4; ix++)
00240 {
00241 console->Printf(KTxtFormat8,ptrarray[ix]);
00242 }
00243 console->Printf(KTxtNewLine);
00244
00245
00246 ptrarray.DeleteAll();
00247
00248
00249 ptrarray.Reset();
00250
00251 console->Printf(KTxtState2);
00252 for (ix = 0; ix<4; ix++)
00253 {
00254 console->Printf(KTxtFormat8,ptrarray[ix]);
00255 }
00256 console->Printf(KTxtNewLine);
00257
00258 }