Boost檔案讀寫,斷言、日期

來源:互聯網
上載者:User
#include "stdafx.h"//#define BOOST_DISABLE_ASSERTS#define BOOST_ENABLE_ASSERT_HANDLER#include <iostream>#include <boost/thread/thread.hpp>#include <string>#include <vector>#include <boost/algorithm/string.hpp>#include <boost/lexical_cast.hpp>#include <fstream>#include <exception>using namespace boost;using namespace std;namespace boost{void assertion_failed(char const * expr, char const * function, char const * file, long line) // user defined{cout<<"@@@@@@@@@@@@@@@@@@"<<endl;}}int main() {try{ifstream file;wstring file_name = _T("test.txt");file.open(file_name.c_str(),ios::in);string line;while(!file.eof()){getline(file, line);cout<<line<<endl;vector<string> results;split(results,line,is_any_of(" "));if(results.size()==3){for (vector<string>::const_iterator p=results.begin();p!=results.end();++p){double d=boost::lexical_cast<double>(*p);cout<<d<<endl;}}}file.clear();file.close();}catch (std::exception& e){cout<<e.what()<<endl;}// today is 2009/5/12boost::gregorian::date today = boost::gregorian::day_clock::local_day();boost::gregorian::greg_month month =  today.month();boost::gregorian::greg_day day =  today.day();boost::gregorian::greg_year year =  today.year();cout << day.as_number() << endl;  // 12cout << month.as_number() << endl; // 5cout << (unsigned short)year << endl; // 5cout << month.as_short_string() << endl; // May cout << month.as_long_string() << endl;  // May BOOST_ASSERT(0);}

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.