本文整理汇总了C++中TestObject::int_intInt方法的典型用法代码示例。如果您正苦于以下问题:C++ TestObject::int_intInt方法的具体用法?C++ TestObject::int_intInt怎么用?C++ TestObject::int_intInt使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类TestObject
的用法示例。
在下文中一共展示了TestObject::int_intInt方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C++代码示例。
示例1: main
//.........这里部分代码省略.........
int_void << time << endl;
}
int_void.close();
}
else if (whatToTest == "3")
{
ofstream int_int("int_int");
if(!int_int) {
cout << "Cannot open file.\n";
exit(0);
}
for (int i = 0; i != testNumber; ++i)
{
retValue = gettimeofday(&before, 0);
if (retValue != 0) {
cerr << "Error with gettimeofday" << endl;
exit(0);
}
ret = test->int_int(1);
retValue = gettimeofday(&after, 0);
if (retValue != 0) {
cerr << "Error with gettimeofday" << endl;
exit(0);
}
double time = (after.tv_sec - before.tv_sec)*1000000 + (after.tv_usec - before.tv_usec);
int_int << time << endl;
}
int_int.close();
}
else if (whatToTest == "4")
{
ofstream int_intInt("int_intInt");
if(!int_intInt) {
cout << "Cannot open file.\n";
exit(0);
}
for (int i = 0; i != testNumber; ++i)
{
retValue = gettimeofday(&before, 0);
if (retValue != 0) {
cerr << "Error with gettimeofday" << endl;
exit(0);
}
ret = test->int_intInt(1, 2);
retValue = gettimeofday(&after, 0);
if (retValue != 0) {
cerr << "Error with gettimeofday" << endl;
exit(0);
}
double time = (after.tv_sec - before.tv_sec)*1000000 + (after.tv_usec - before.tv_usec);
int_intInt << time << endl;
}
int_intInt.close();
}
else if (whatToTest == "5")
{
ofstream int_intIntInt("int_intIntInt");
if(!int_intIntInt) {
cout << "Cannot open file.\n";
exit(0);
}
for (int i = 0; i != testNumber; ++i)