time.h

来自「Solaris环境下的数据挖掘算法:birch聚类算法。该算法适用于对大量数据的」· C头文件 代码 · 共 49 行

H
49
字号
/*  ========================================================================  DEVise Data Visualization Software  (c) Copyright 1992-1995  By the DEVise Development Group  Madison, Wisconsin  All Rights Reserved.  ========================================================================  Under no circumstances is this software to be copied, distributed,  or altered in any way without prior permission from the DEVise  Development Group.*//*  $Id: Time.h,v 1.3 1995/12/02 20:56:09 jussi Exp $  $Log: Time.h,v $  Revision 1.3  1995/12/02 20:56:09  jussi  Substituted DeviseTime for Time and added copyright notice.  Revision 1.2  1995/09/05 21:13:06  jussi  Added/updated CVS header.*//*   Time.h: keeps track of current time in terms of # of milliseconds   since the beginning of the program*/#ifndef Time_h#define Time_h#include <sys/time.h>#include "Journal.h"class DeviseTime {public:  static void Init();  static long Now();private:  static struct timeval _beginning; /* time of day at the beginning */};#endif

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?