- 论坛徽章:
- 0
|
string 类型实现的执行速度是 C 风格字符串的两倍
平均来说
把 len = strlen(pc)放在外面,结果就不一样了
- // ***** C-style character string implementation *****
- #include <iostream>;
- #include <cstring>;
- int main()
- {
- int errors = 0;
- const char *pc = "a very long literal string";
- int len = strlen( pc ); //这句放在外面
- for ( int ix = 0; ix < 1000000; ++ix )
- {
- char *pc2 = new char[ len + 1 ];
- strcpy( pc2, pc );
- if ( strcmp( pc2, pc ))
- ++errors;
- delete [] pc2;
- }
- cout << "C-style character strings: "
- << errors << " errors occurred.\n";
- }
- // ***** string implementation *****
- #include <iostream>;
- #include <string>;
- int main() {
- int errors = 0;
- string str( "a very long literal string" );
- for ( int ix = 0; ix < 1000000; ++ix )
- {
- int len = str.size();
- string str2 = str;
- if ( str != str2 )
- ++errors;
- }
- cout << "string class: "
- << errors << " errors occurred.\n";
- }
复制代码 |
|