共用方式為


_ftime,_ftime32 _ftime64

取得目前的時間。 這些函式更安全版本都可使用; see _ftime_s,_ftime32_s _ftime64_s.

void _ftime( 
   struct _timeb *timeptr 
);
void _ftime32( 
   struct __timeb32 *timeptr 
);
void _ftime64( 
   struct __timeb64 *timeptr 
);

參數

  • timeptr
    Pointer to a _timeb,__timeb32 or __timeb64 structure.

備註

_ftime函式會取得目前的當地時間,並將它儲存在結構中所指timeptr*.* _timeb, __timeb32,和__timeb64 SYS\Timeb.h 中所定義的結構。 它們包含下列表格中所列的四個欄位。

  • dstflag
    如果日光節約時間是目前作用中的當地時區計算,非零值。 (請參閱 _tzset 如需說明如何決定日光節約時間。)

  • millitm
    毫秒秒數部分。

  • time
    時間 (秒) 午夜 (00: 00: 00)、 1970 年 1 月 1,國際標準時間 (UTC)。

  • timezone
    以分鐘為單位的差異時,切換想知道 UTC 及當地時間。 值為timezone設定全域變數的值從_timezone (請參閱_tzset)。

_ftime64使用__timeb64結構,可讓檔案建立日期,以用來表示向上 23: 59: 59 之間,3000 年 12 月 31 UTC。 而_ftime32只代表透過 03: 14: 07 以後 2038 年 1 月 19 日,UTC 日期。 午夜 1970 年 1 月 1 日,則所有這些函式之日期範圍的下限。

_ftime相當於_ftime64和_timeb包含 64 位元的時間。 在此情況除非_USE_32BIT_TIME_T定義時,在這種情況的舊的行為是作用中。 _ftime使用 32 位元的時間和_timeb包含 32 位元的時間。

_ftime驗證其參數。 如果傳遞 null 指標,作為timeptr,如所述的函式叫用無效的參數處理常式中, 參數驗證。 如果執行,則允許繼續執行,此函式會將errno到EINVAL。

需求

Function

所需的標頭

_ftime

<sys/types.h> 和 <sys/timeb.h>

_ftime32

<sys/types.h> 和 <sys/timeb.h>

_ftime64

<sys/types.h> 和 <sys/timeb.h>

如需相容性資訊,請參閱相容性在簡介中。

範例

// crt_ftime.c
// compile with: /W3
// This program uses _ftime to obtain the current
// time and then stores this time in timebuffer.

#include <stdio.h>
#include <sys/timeb.h>
#include <time.h>

int main( void )
{
   struct _timeb timebuffer;
   char timeline[26];
   errno_t err;
   time_t time1;
   unsigned short millitm1;
   short timezone1;
   short dstflag1;

   _ftime( &timebuffer ); // C4996
   // Note: _ftime is deprecated; consider using _ftime_s instead

   time1 = timebuffer.time;
   millitm1 = timebuffer.millitm;
   timezone1 = timebuffer.timezone;
   dstflag1 = timebuffer.dstflag;

   printf( "Seconds since midnight, January 1, 1970 (UTC): %I64d\n", 
   time1);
   printf( "Milliseconds: %d\n", millitm1);
   printf( "Minutes between UTC and local time: %d\n", timezone1);
   printf( "Daylight savings time flag (1 means Daylight time is in "
           "effect): %d\n", dstflag1); 
   
   err = ctime_s( timeline, 26, & ( timebuffer.time ) );
   if (err)
   {
       printf("Invalid argument to ctime_s. ");
   }
   printf( "The time is %.19s.%hu %s", timeline, timebuffer.millitm,
           &timeline[20] );
}
  

.NET Framework 對等用法

System::DateTime::Now

請參閱

參考

時間管理

asctime _wasctime

ctime、 _ctime32、 _ctime64、 _wctime、 _wctime32、 _wctime64

gmtime,_gmtime32 _gmtime64

localtime,_localtime32 _localtime64

time,_time32 _time64