Initializing static struct tm in a class

ぃ、小莉子 提交于 2019-12-10 15:27:53

问题


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?


回答1:


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.




回答2:


struct tm get_current_localtime() {
    time_t now = time(0);
    return *localtime(&now);
}

struct tm Indice::dataTime = get_current_localtime();



回答3:


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.




回答4:


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.




回答5:


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.




回答6:


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.



来源:https://stackoverflow.com/questions/2105077/initializing-static-struct-tm-in-a-class

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!