新手指針/地址優化問題。如何避免time_t變量?
作爲練習,我寫了這段代碼。
/* -------------------------------------------------------------
FUNC : dateplusdays (date plus days)
add/substract days to/from date
days can be positive or negative
PARAMS : date (int, format yyyymmdd), days (int)
RETURNS : date (int, format yyyymmdd)
REMARKS :
---------------------------------------------------------------- */
int dateplusdays(int date_1, int days) {
int year, month, day;
int date_2;
struct tm time;
time_t time_seconds;
year = (int) floor(date_1/10000.0);
month = (int) (floor(date_1/100.0) - year * 100);
day = (int) (floor(date_1) - month * 100 - year * 10000);
time.tm_sec = 0;
time.tm_min = 0;
time.tm_hour = 0;
time.tm_year = year - 1900;
time.tm_mon = month - 1;
time.tm_mday = day;
time_seconds = mktime(&time) + days * 86400;
time = *localtime(&time_seconds);
date_2 = (time.tm_year + 1900) * 10000 + (time.tm_mon + 1) * 100 + time.tm_mday;
return date_2;
}
現在,爲了練習目的,我想把這兩行放在一行中,因此避免了可變的time_seconds。
time_seconds = mktime(&time) + days * 86400;
time = *localtime(&time_seconds);
localtime需要time_t變量的地址。我沒有看到如何使用這個time_t變量跳過這一步。
不要打擾。這不太可能導致更優化的代碼。只要現在編寫代碼(這可以更容易閱讀),並讓編譯器(現在非常好)來完成它的工作。 – kaylum