⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 datetime.cpp

📁 MySql C++ library
💻 CPP
字号:
#include <windows.h>#include "datetime2.hh"#include <iomanip>using namespace std;//---------------------------------------------------------------ostream& mysql_date::out_stream (ostream& s) const{  char fill = s.fill('0');  ios::fmtflags flags = s.setf(ios::right);  s << setw(4) << year << '-'    << setw(2) << month << '-'    << setw(2) << day;  s.flags(flags);  s.fill(fill);  return s;}//-------------------------------------------------------------ostream& mysql_time::out_stream (ostream& s) const{  char fill = s.fill('0');  ios::fmtflags flags = s.setf(ios::right);  s << setw(2) << hour << ':'    << setw(2) << minute << ':'    << setw(2) << second;  s.flags(flags);  s.fill(fill);  return s;}//-------------------------------------------------------------ostream& MysqlDateTime::out_stream (ostream& s) const{  mysql_date::out_stream(s);  s << " ";  mysql_time::out_stream(s);  return s;}//-------------------------------------------------------------cchar* mysql_date::convert (cchar* str){  char num[5];  num[0] =*str++; num[1] =*str++; num[2] =*str++; num[3] =*str++; num[4] = 0;  year = strtol(num,0,10);  if (*str == '-') str++;  num[0] = *str++; num[1] = *str++; num[2] = 0;  month = strtol(num,0,10);  if (*str == '-') str++;  num[0] = *str++; num[1] = *str++; num[2] = 0;  day = strtol(num,0,10);  return str;}//-------------------------------------------------------------string& mysql_date::convert(string& str){   convert(str.c_str());   return str ;}//-------------------------------------------------------------cchar* mysql_time::convert (cchar* str){  char num[5];  num[0] = *str++; num[1] = *str++; num[2] = 0;  hour = strtol(num,0,10);  if (*str == ':') str++;  num[0] = *str++; num[1] = *str++; num[2] = 0;  minute = strtol(num,0,10);  if (*str == ':') str++;  num[0] = *str++; num[1] = *str++; num[2] = 0;  second = strtol(num,0,10);  return str;}//-------------------------------------------------------------string& mysql_time::convert(string& str){   convert(str.c_str());   return str ;}//-------------------------------------------------------------cchar* MysqlDateTime::convert (cchar* str){  str = mysql_date::convert(str);  if (*str == ' ') str++;  str = mysql_time::convert(str);  return str;}//-------------------------------------------------------------string& MysqlDateTime::convert(string& str){   convert(str.c_str());   return str ;}//-------------------------------------------------------------short int mysql_date::compare(const mysql_date* other) const{  if (year != other->year) return year - other->year;  if (month != other->month) return month - other->month;  return day - other->day;}//-------------------------------------------------------------short int mysql_time::compare(const mysql_time* other) const{  if (hour != other->hour) return hour - other->hour;  if (minute != other->minute) return minute - other->minute;  return minute - other->minute;}//-------------------------------------------------------------short int MysqlDateTime::compare(const MysqlDateTime &other) const{  int x;  x = mysql_date::compare(&other);  if (x) return x;  return mysql_time::compare(&other);}//end of file ==================================================

⌨️ 快捷键说明

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