SYSTEMTIME相当于linux

时间:2016-08-16 15:35:46

标签: c++ linux visual-studio-2010 cross-platform

我正在用从VS2010到Linux环境的C ++编写的巨大解决方案进行跨平台编译。

我的问题是:linux中最接近的struct SYSTEMTIME是什么意思?

typedef struct _SYSTEMTIME
    {
    WORD wYear;
    WORD wMonth;
    WORD wDayOfWeek;
    WORD wDay;
    WORD wHour;
    WORD wMinute;
    WORD wSecond;
    WORD wMilliseconds;
    }   SYSTEMTIME;

提前致谢

1 个答案:

答案 0 :(得分:1)

查看ctime(3)及相关功能。 struct tm似乎与_SYSTEMTIME结构紧密匹配。

dat <- scan("data/ports.txt‌​")    ## use `scan` if you are to read in a vector
x <- table(dat)    ## contingency table
barplot(x, col=c("#ccf0fe9f"), horiz=TRUE, cex.names=0.5, las=1, width=5, 
        xlab="Occurences", ylab="Attacks")