- 353 名前:デフォルトの名無しさん mailto:sage [2005/12/10(土) 13:18:58 ]
- 気になったので試してみた
List<int>^ results = gcnew List<int>; time_t stm = 0; time(&stm); for ( unsigned long int i=0; i<100000000; i++ ) { results->Add(lstrcmp(a, b)); } time_t etm = 0; time(&etm); std::cout << "Result : " << etm - stm << " Size : " << results->Count << std::endl; CLR Native CLRx64 Nativex64 lstrcmp 13s 11s 12s 9s なかなか、よい結果です
|

|