程序代码:
#include
using namespace std;
class CTime//时间类
{
private:
unsigned short int hour; //时
unsigned short int minute; //分
unsigned short int second; //秒
public:
CTime(int h=0,int m=0,i...
分类:
其他好文 时间:
2014-06-17 16:07:31
阅读次数:
305
1. linux文件的时间
linux下文件时间主要有下面三种:
1.1 modification time(mtime)文件修改时间,即文件内容的修改时,更新这个时间,不包括文件权限和属性的修改。
使用ls -l查看,默认显示时间为mtime...
分类:
系统相关 时间:
2014-06-16 20:41:46
阅读次数:
432
find命令–用途:用于查找文件或目录–格式:find[查找范围][查找条件]常用查找条件–-name:按文件名称查找–-size:按文件大小查找–-user:按文件属主查找–-type:按文件类型查找–-print:以\n为换行符打印出文件(路径)高级查找条件–-perm:按权限查找–-ctime(-cmin?.
分类:
系统相关 时间:
2014-06-16 15:04:40
阅读次数:
260
程序代码:
#include
using namespace std;
class CTime//时间类
{
private:
unsigned short int hour; //时
unsigned short int minute; //分
unsigned short int second; //秒
public:
CTime(int h=0,int m=0,i...
分类:
其他好文 时间:
2014-06-15 16:29:40
阅读次数:
351
Linux系统文件有三个主要的时间属性,分别是ctime(change time, 而不是create time), atime(access time), mtime(modify time)。后来为了解决atime的性能问题,还引入了一个relatime的属性,下面一一解释。ctime, 很多朋...
分类:
其他好文 时间:
2014-06-14 20:33:31
阅读次数:
191
1.使用CTime类 CString str; //获取系统时间 CTime tm;
tm=CTime::GetCurrentTime(); str=tm.Format("现在时间是%Y年%m月%d日 %X
%H:%M:%S");MessageBox(str,NULL,MB_OK);%a...
分类:
其他好文 时间:
2014-06-10 19:46:24
阅读次数:
337
在MFC中增加一个时间计时器消息事件利用this->SetTimer(1,1000,NULL);开启计时器添加响应事件void
Csqllink1Dlg::OnTimer(UINT_PTR nIDEvent) { CTime
tm; tm=CTime::GetCurrentTime(); CWnd*...
分类:
其他好文 时间:
2014-06-07 09:58:30
阅读次数:
224
time_t time(time_t
*t);如果t是空指针,直接返回当前时间。如果t不是空指针,返回当前时间的同时,将返回值赋予t指向的内存空间。函数: ctime功 能:
把日期和时间转换为字符串用 法: char *ctime(const time_t *time);#include#incl...
分类:
其他好文 时间:
2014-06-07 06:01:02
阅读次数:
169
参考链接:VC++中CTime类Format参数详解CTime/COleDateTime::Format方法的使用http://stat.ethz.ch/R-manual/R-devel/library/base/html/strptime.htmlhttp://www.geezer.org/sw/...
分类:
编程语言 时间:
2014-05-28 13:47:28
阅读次数:
433
'''
【程序91】
题目:时间函数举例1
1.程序分析:
2.程序源代码:
'''
if __name__ == '__main__':
import time
print time.ctime(time.time())
print time.asctime(time.localtime(time.time()))
print time.asctime(time...
分类:
编程语言 时间:
2014-05-25 18:15:41
阅读次数:
311