65,187
社区成员




void test()
{
for(int i=0; i<1000; i++)
{
CString strTest;
....
}
}
void test()
{
CString strTest;
for(int i=0; i<1000; i++)
{
...// 与A相同
}
}
for(int i=0; i<1000; i++)
{
CString strTest;
....
}