Book Not Compiling中的示例(时间函数)

时间:2018-01-08 14:10:10

标签: c++ time

我最近选择了一本c ++书,“C ++编程的完整指南”,我似乎无法得到一个正确编译的例子。我想这是一个版本问题,但我似乎无法找到任何关于这个版本的'时间'功能甚至工作。

最近是否更改了'时间'功能?

#include <iostream>
#include <string>
#include <iomanip>
#include <cctype>
#include <ctime>

using namespace std;

long timediff(void);
static string secret = "ISUS";
static long maxcount = 3, maxtime = 60;

bool getPassword()
{
    bool ok_flag = false;
    string word;
    int count = 0, time = 0;
    timediff();
    while (ok_flag != true && ++count <= maxcount)
    {
        cout << "\n\nInput the password: ";
        cin.sync();
        cin >> setw(20) >> word;
        time += timediff();
        if (time >= maxtime)
            break;
        if (word != secret)
            cout << "Invalid password!" << endl;
        else
            ok_flag = true;
    }
    return ok_flag;
}

long timediff()
{
    static long sec = 0;
    long oldsec = sec;
    time( &sec);
    return (sec - oldsec);
}

构建时会产生以下错误...

1>d:\c++ training\learning\learning\source.cpp(39): error C2664: 'time_t time(time_t *const )': cannot convert argument 1 from 'long *' to 'time_t *const '
1>d:\c++ training\learning\learning\source.cpp(39): note: Types pointed to are unrelated; conversion requires reinterpret_cast, C-style cast or function-style cast
1>Done building project "Learning.vcxproj" -- FAILED.

1 个答案:

答案 0 :(得分:7)

std::time的签名是

std::time_t time( std::time_t* arg );

std::time_t定义为:

typedef /* unspecified */ time_t;

本书假设long是未指定的类型。这对任何程序员来说都是一个糟糕的教训。你正在以艰难的方式学习它,因为typedef会改变,但代码示例却没有。

像这样的类型别名的重点是抽象实现细节。并允许您编写可移植代码。本书对别名的假设是没有根据的。并且表明作者不应该教任何人C ++。