<<C++ Primer>> 第四版 Exercise Section 4.3.1 部分Exercise 4.2.9 习题如下:
在自己本机执行如下程序,记录程序执行时间:
#include "stdafx.h"
#include <iostream>
#include <string>
#include <vector>
#include <ctime> using namespace std; int main()
{
clock_t start, end;
start = clock();
const char *pc = "a very long literal string";
const size_t len = strlen(pc);
cout << "the length of pc is: " << len << endl;
for (size_t ix = ; ix != ; ++ix)
{
char *pc2 = new char[len+];
strcpy_s(pc2,len+,pc);
if (strcmp(pc, pc2))
{
// do nothing
}
delete[] pc2;
} end = clock();
cout << "for c style operation : " << (end - start) << endl; clock_t start1, end1;
start1 = clock();
string str("a very long literal string");
for (int ix = ; ix != ; ++ix)
{
string str2 = str;
if (str != str2)
{ }
}
end1 = clock();
cout << "for c++ string operation : " << (end1 - start1) << endl;
return ;
}
其中时间记录的代码是我自己加的,用于分别记录C风格字符串和C++ string对象赋值操作的执行时间。执行结果如下:
c++ string 对象的赋值操作耗时明显比c风格字符串要长很多,但是从书上的结论来说,c++ string的操作要远比c风格字符串长。所以这里记录下,以后研究标准库时,分析代码来找原因。