03 2016 档案

摘要:#CMakeLists.txt cmake_minimum_required(VERSION 2.8) project(server) #添加包含目录 include_directories(./include) #添加源文件 aux_source_directory(./src DIR_SRC) #添加头文件 SET(HEADERS include/hello.h ) #可执行文件 add_... 阅读全文
posted @ 2016-03-27 19:12 你好阿汤哥 阅读(392) 评论(0) 推荐(0) 编辑
摘要:1 import datetime,time 2 dtstr = '2014-02-14 21:32:12' 3 a = datetime.datetime.strptime(dtstr, "%Y-%m-%d %H:%M:%S") 4 print a.date() // 日期 5 print a.time() // 时间 6 b = time.mktime(a.tim... 阅读全文
posted @ 2016-03-22 14:14 你好阿汤哥 阅读(206) 评论(0) 推荐(0) 编辑