Initializing static struct tm in a class

2019-06-27 09:03发布

I would like to use the tm struct as a static variable in a class. Spent a whole day reading and trying but it still can't work :( Would appreciate if someone could point out what I was doing wrong

In my class, under Public, i have declared it as:

static struct tm *dataTime;

In the main.cpp, I have tried to define and initialize it with system time temporarily to test out (actual time to be entered at runtime)

time_t rawTime;
time ( &rawTime );
tm Indice::dataTime = localtime(&rawTime);

but seems like i can't use time() outside functions.

main.cpp:28: error: expected constructor, destructor, or type conversion before ‘(’ token

How do I initialize values in a static tm of a class?

6条回答
成全新的幸福
2楼-- · 2019-06-27 09:33

You can wrap the above in a function:

tm initTm() {
    time_t rawTime;
    ::time(&rawTime);
    return *::localtime(&rawTime);
}

tm Indice::dataTime = initTm();

To avoid possible linking problems, make the function static or put it in an unnamed namespace.

查看更多
爱情/是我丢掉的垃圾
3楼-- · 2019-06-27 09:41

You can't call functions arbitrarily outside functions. Either do the initialization in your main() function, or create a wrapper class around the tm struct with a constructor that does the initialization.

查看更多
何必那么认真
4楼-- · 2019-06-27 09:44
struct tm get_current_localtime() {
    time_t now = time(0);
    return *localtime(&now);
}

struct tm Indice::dataTime = get_current_localtime();
查看更多
爱情/是我丢掉的垃圾
5楼-- · 2019-06-27 09:48

Add this:

namespace {
  class Initializer {
    public:
      Initializer() { 
        time_t rawtime; time(&rawtime);
        YourClass::dataTime = localtime(&rawtime);
      }
  };
  static Initializer myinit();
}

When the object file is initialized at run-time, the constructor Initializer() is called which then sets the "global" variable dataTime as you want. Note that the anonymous namespace construction helps to prevent potential clashes for the names Initializer and myinit.

查看更多
我只想做你的唯一
6楼-- · 2019-06-27 09:54

Also note that your struct tm is a pointer to a tm struct. The return from localtime is a singleton pointer whose contents will change when you or anyone else calls localtime again.

查看更多
走好不送
7楼-- · 2019-06-27 09:57

Wrap the whole thing in a function, and use that to initialize your static member:

tm gettime() {
    time_t rawTime;
    time ( &rawTime );
    return localtime(&rawTime);
}

tm Indice::dataTime = gettime();

And you don’t need to (and thus shouldn’t) prefix struct usage with struct in C++: tm is enough, no struct tm needed.

查看更多
登录 后发表回答