标签: c++
我的班级的成员类型为timeval struct
timeval struct
#include <sys/time.h> class temp { struct timeval starttime; public: temp(); ~temp(){} }; temp::temp(): {}
我的问题是如何在构造函数的初始化列表中初始化此startime成员。
startime