码迷,mamicode.com
首页 >  
搜索关键字:ctime    ( 1022个结果
linux atime ctime mtime
touch testtime1、stat testtime【为文件名】 可以查看这个文件名的三者状态2、ll testtime;ll --time=atime testtime ;ll --time=ctime testtime-rw-r--r--. 1 root root 0 Sep 23 19:...
分类:系统相关   时间:2014-09-24 12:40:56    阅读次数:325
MFC中CTime获取日期时间的方法
MFC中CTime类的功能非常强大,可以获取年、月、日、小时、分钟、秒、星期等等,最最重要的是可根据需要去格式化。...
分类:其他好文   时间:2014-09-23 13:19:34    阅读次数:140
PYthon多线程服务器
分为两部分,一部分用来更新数据,另一部分用来响应客户端的请求。 from SocketServer import TCPServer, StreamRequestHandler from time import ctime from SocketServer import ThreadingTCPServer import traceback import threading Mut...
分类:编程语言   时间:2014-09-22 01:52:01    阅读次数:217
检测MYSQL不同步发邮件通知的脚本
脚本代码如下:#!/bin/bash # Info : check mysql slave # Author : dingtm # CTime : 2011.03.21 # This script run by root DBDir=/elain/apps/mysql/bin/ DBSock=/el...
分类:数据库   时间:2014-09-19 19:15:56    阅读次数:236
MySQL TIMESTAMP(时间戳)详解
在创建表时如果表中有一个字段类型为TIMESTAMP,则该字段默认的生成语句为:CREATE TABLE `test` ( `id` int(11) DEFAULT NULL, `ctime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CH...
分类:数据库   时间:2014-09-18 22:18:34    阅读次数:269
【ThinkingInC++】48、用标准C库中的时间函数生成简单的Time类
Cpptime.h /** * 书本:【ThinkingInC++】 * 功能:用标准C库中的时间函数生成简单的Time类 * 时间:2014年9月11日07:53:56 * 作者:cutter_point */ #ifndef CPPTIME_H_INCLUDED #define CPPTIME_H_INCLUDED #include #include //这里ctime和cstri...
分类:编程语言   时间:2014-09-11 09:42:01    阅读次数:229
【ThinkingInC++】42、类里的const
Const在建立它的地方被初始化。Const修饰无法修改。 关于static const类型是:所有的对象共享且不变的数据。 http://blog.csdn.net/luoweifu/article/details/20288549 输出本地时间: time_t t = time(0); char tmp[64]; strftime( tmp, sizeof(tm...
分类:编程语言   时间:2014-09-09 13:18:58    阅读次数:231
程序中涉及到时间的相关问题
一. 自设DateTimePicker的时间 CString        mTime;   mTime="2005-5-25        12:25:32";        //自设时间 //在界面上有两DataTimePicker控件   CTime        m_Date;//短日期:IDC_DATETIMEPICKER1   CTime       ...
分类:其他好文   时间:2014-09-03 16:51:06    阅读次数:250
MYSQL 强制使用某个索引 select count(*) from t_audit_operate_log use index(indx_ctime) where Fuser='CY6016
MYSQL 强制使用某个索引 select count(*) from t_audit_operate_log use index(indx_ctime) where Fuser='CY6016http://blog.163.com/li_hx/blog/static/183991413201472...
分类:数据库   时间:2014-08-21 20:57:34    阅读次数:486
C语言产生随机数
C语言/C++产生随机数:要用到的函数是rand(), srand()和time() 需要说明的是,iostream头文件中就有srand函数的定义,不需要再额外引入stdlib.h;而使用time()函数需要引入ctime头文件。 使用rand()函数获取一个随机数 如果你只要产生随机数而不需要设定范围的话,你只要用rand()就可以了:rand()会返回一随机...
分类:编程语言   时间:2014-08-18 16:22:22    阅读次数:247
1022条   上一页 1 ... 98 99 100 101 102 103 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!