{"id":496,"date":"2012-07-02T16:15:22","date_gmt":"2012-07-02T07:15:22","guid":{"rendered":"http:\/\/dev.activebasic.com\/egtra\/?p=496"},"modified":"2012-07-02T16:15:22","modified_gmt":"2012-07-02T07:15:22","slug":"put_timeput_money%e3%81%a8boost-format","status":"publish","type":"post","link":"https:\/\/dev.activebasic.com\/egtra\/2012\/07\/02\/496\/","title":{"rendered":"put_time\/put_money\u3068Boost.Format"},"content":{"rendered":"<p>C++\u306eput_time\u3084put_money\u30de\u30cb\u30d4\u30e5\u30ec\u30fc\u30bf\u306fBoost.Format\u3068\u4f75\u7528\u3067\u304d\u307e\u3059\u3002<\/p>\n<ul>\n<li>put_time\u3068put_money\u306f\u8b0e\u306e\u578b\u3092\u8fd4\u3059\u5358\u306a\u308b\u95a2\u6570\u3067\u3042\u308a\u3001\u3053\u308c\u3089\u306e\u8b0e\u306e\u578b\u306f&lt;&lt;\u6f14\u7b97\u5b50\u3067\u51fa\u529b\u3067\u304d\u308b\u3068\u3044\u3046\u6c7a\u307e\u308a\u3002<\/li>\n<li>Boost.Format\u306f&lt;&lt;\u6f14\u7b97\u5b50\u3067\u51fa\u529b\u3067\u304d\u308b\u578b\u306a\u3089\u4f55\u3067\u3082\u5f15\u6570\u306b\u53d6\u308c\u308b\u3002<\/li>\n<\/ul>\n<p>\u305d\u306e\u305f\u3081\u3001\u3053\u3093\u306a\u30b3\u30fc\u30c9\u3082\u52d5\u304d\u307e\u3059\u3002<\/p>\n<pre lang=\"cpp\">\r\n#include <ctime>\r\n#include <iostream>\r\n#include <iomanip>\r\n#include <boost\/format.hpp>\r\n#include <boost\/format\/group.hpp>\r\n\r\nint main()\r\n{\r\n  auto t = std::time(nullptr);\r\n  auto tm = std::localtime(&t);\r\n  std::locale l(\"\");\r\n\r\n  using namespace std;\r\n  using boost::format;\r\n  using boost::io::group;\r\n\r\n  \/\/ cout << put_time(tm, \"%c\") << endl;\r\n  cout << format(\"%s\") % put_time(tm, \"%c\") << endl;\r\n  cout << format(\"%s\", l) % put_time(tm, \"%c\") << endl;\r\n\r\n  double x = 1234567890;\r\n\r\n  \/\/ cout << put_money(x, false) << endl;\r\n  \/\/ cout << showbase << put_money(x, false) << endl;\r\n  cout << format(\"%s\") % put_money(x, false) << endl;\r\n  cout << format(\"%s\", l) % put_money(x, false) << endl;\r\n  cout << format(\"%#s\", l) % put_money(x, false) << endl;\r\n  cout << format(\"%s\", l)\r\n    % group(showbase, put_money(x, false)) << endl;\r\n}\r\n<\/pre>\n<p>Visual C++ 2010 + Boost 1.50\u3067\u30b3\u30f3\u30d1\u30a4\u30eb\u3057\u3001\u65e5\u672c\u8a9e\u7248Windows\u3067\u5b9f\u884c\u3059\u308b\u3068\u3053\u306e\u3088\u3046\u306a\u51fa\u529b\u306b\u306a\u308a\u307e\u3057\u305f\u3002<\/p>\n<pre>\r\n07\/02\/12 15:56:18\r\n2012\/07\/02 15:56:18\r\n1234567890\r\n1,234,567,890\r\n\\1,234,567,890\r\n\\1,234,567,890\r\n<\/pre>\n<p>\u3042\u307e\u308a\u77e5\u3089\u308c\u3066\u3044\u306a\u3044\u304b\u3082\u3057\u308c\u307e\u305b\u3093\u304c\u3001boost::format\u95a2\u6570\u306f2\u756a\u76ee\u306e\u5f15\u6570\u3068\u3057\u3066std::locale\u3092\u5f15\u6570\u306b\u53d6\u308a\u307e\u3059\u3002\u3053\u306e\u66f8\u5f0f\u306fput_time\u3068put_money\u306b\u3082\u5f71\u97ff\u3092\u53ca\u307c\u3059\u3088\u3046\u3067\u3059\u3002<\/p>\n<p>\u307e\u305f\u3001%#s\u306e#\u306e\u3088\u3046\u306aprintf\u7cfb\u306e\u66f8\u5f0f\u3092iostream\u306e\u30de\u30cb\u30d4\u30e5\u30ec\u30fc\u30bf\u306b\u7ffb\u8a33\u3059\u308b\u6a5f\u80fd\uff08\u30e6\u30fc\u30b6\u30fc\u5b9a\u7fa9\u578b\u306e<<\u6f14\u7b97\u5b50\u3092\u4f7f\u7528\u3059\u308b\u5834\u5408\uff09\u3001iostream\u306e\u30de\u30cb\u30d4\u30e5\u30ec\u30fc\u30bf\u3067\u66f8\u5f0f\u6307\u5b9a\u3059\u308bboost::io::group\u95a2\u6570\u3082\u5f53\u7136\u52b9\u304d\u307e\u3057\u305f\u3002\n<\/p>\n","protected":false},"excerpt":{"rendered":"<p>C++\u306eput_time\u3084put_money\u30de\u30cb\u30d4\u30e5\u30ec\u30fc\u30bf\u306fBoost.Format\u3068\u4f75\u7528\u3067\u304d\u307e\u3059\u3002locale\u3084\u30de\u30cb\u30d4\u30e5\u30ec\u30fc\u30bf\u306e\u6307\u5b9a\u304c\u6a5f\u80fd\u3059\u308b\u3053\u3068\u3082\u78ba\u304b\u3081\u3066\u307f\u307e\u3057\u305f\u3002<\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"_monsterinsights_skip_tracking":false,"_monsterinsights_sitenote_active":false,"_monsterinsights_sitenote_note":"","_monsterinsights_sitenote_category":0,"footnotes":""},"categories":[5],"tags":[45,113,218],"class_list":["post-496","post","type-post","status-publish","format-standard","hentry","category-cpp","tag-boost","tag-boost-format","tag-stdlocale"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v23.0 - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>put_time\/put_money\u3068Boost.Format - \u30a4\u30b0\u30c8\u30e9\u30f3\u30b9\u306e\u982d\u306e\u4e2d<\/title>\n<meta name=\"description\" content=\"C++\u306eput_time\u3084put_money\u30de\u30cb\u30d4\u30e5\u30ec\u30fc\u30bf\u306fBoost.Format\u3068\u4f75\u7528\u3067\u304d\u307e\u3059\u3002locale\u3084\u30de\u30cb\u30d4\u30e5\u30ec\u30fc\u30bf\u306e\u6307\u5b9a\u304c\u6a5f\u80fd\u3059\u308b\u3053\u3068\u3082\u78ba\u304b\u3081\u3066\u307f\u307e\u3057\u305f\u3002\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/dev.activebasic.com\/egtra\/2012\/07\/02\/496\/\" \/>\n<meta property=\"og:locale\" content=\"ja_JP\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"put_time\/put_money\u3068Boost.Format - \u30a4\u30b0\u30c8\u30e9\u30f3\u30b9\u306e\u982d\u306e\u4e2d\" \/>\n<meta property=\"og:description\" content=\"C++\u306eput_time\u3084put_money\u30de\u30cb\u30d4\u30e5\u30ec\u30fc\u30bf\u306fBoost.Format\u3068\u4f75\u7528\u3067\u304d\u307e\u3059\u3002locale\u3084\u30de\u30cb\u30d4\u30e5\u30ec\u30fc\u30bf\u306e\u6307\u5b9a\u304c\u6a5f\u80fd\u3059\u308b\u3053\u3068\u3082\u78ba\u304b\u3081\u3066\u307f\u307e\u3057\u305f\u3002\" \/>\n<meta property=\"og:url\" content=\"https:\/\/dev.activebasic.com\/egtra\/2012\/07\/02\/496\/\" \/>\n<meta property=\"og:site_name\" content=\"\u30a4\u30b0\u30c8\u30e9\u30f3\u30b9\u306e\u982d\u306e\u4e2d\" \/>\n<meta property=\"article:publisher\" content=\"https:\/\/www.facebook.com\/ysk.noh\" \/>\n<meta property=\"article:published_time\" content=\"2012-07-02T07:15:22+00:00\" \/>\n<meta name=\"author\" content=\"egtra\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:creator\" content=\"@egtra\" \/>\n<meta name=\"twitter:site\" content=\"@egtra\" \/>\n<meta name=\"twitter:label1\" content=\"\u57f7\u7b46\u8005\" \/>\n\t<meta name=\"twitter:data1\" content=\"egtra\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/dev.activebasic.com\/egtra\/2012\/07\/02\/496\/\",\"url\":\"https:\/\/dev.activebasic.com\/egtra\/2012\/07\/02\/496\/\",\"name\":\"put_time\/put_money\u3068Boost.Format - \u30a4\u30b0\u30c8\u30e9\u30f3\u30b9\u306e\u982d\u306e\u4e2d\",\"isPartOf\":{\"@id\":\"https:\/\/dev.activebasic.com\/egtra\/#website\"},\"datePublished\":\"2012-07-02T07:15:22+00:00\",\"dateModified\":\"2012-07-02T07:15:22+00:00\",\"author\":{\"@id\":\"https:\/\/dev.activebasic.com\/egtra\/#\/schema\/person\/8de756b2ff20b964f64594dfe8f18164\"},\"description\":\"C++\u306eput_time\u3084put_money\u30de\u30cb\u30d4\u30e5\u30ec\u30fc\u30bf\u306fBoost.Format\u3068\u4f75\u7528\u3067\u304d\u307e\u3059\u3002locale\u3084\u30de\u30cb\u30d4\u30e5\u30ec\u30fc\u30bf\u306e\u6307\u5b9a\u304c\u6a5f\u80fd\u3059\u308b\u3053\u3068\u3082\u78ba\u304b\u3081\u3066\u307f\u307e\u3057\u305f\u3002\",\"breadcrumb\":{\"@id\":\"https:\/\/dev.activebasic.com\/egtra\/2012\/07\/02\/496\/#breadcrumb\"},\"inLanguage\":\"ja\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/dev.activebasic.com\/egtra\/2012\/07\/02\/496\/\"]}]},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/dev.activebasic.com\/egtra\/2012\/07\/02\/496\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"\u30db\u30fc\u30e0\",\"item\":\"https:\/\/dev.activebasic.com\/egtra\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"put_time\/put_money\u3068Boost.Format\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/dev.activebasic.com\/egtra\/#website\",\"url\":\"https:\/\/dev.activebasic.com\/egtra\/\",\"name\":\"\u30a4\u30b0\u30c8\u30e9\u30f3\u30b9\u306e\u982d\u306e\u4e2d\",\"description\":\"\u982d\u306e\u4e2d\u306e\u304b\u3051\u3089\u3002ActiveBasic\u3092\u4e2d\u5fc3\u306b\u30d7\u30ed\u30b0\u30e9\u30df\u30f3\u30b0\u306e\u8a71\u3092\u307c\u3061\u307c\u3061\u3068\u3002\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/dev.activebasic.com\/egtra\/?s={search_term_string}\"},\"query-input\":\"required name=search_term_string\"}],\"inLanguage\":\"ja\"},{\"@type\":\"Person\",\"@id\":\"https:\/\/dev.activebasic.com\/egtra\/#\/schema\/person\/8de756b2ff20b964f64594dfe8f18164\",\"name\":\"egtra\",\"sameAs\":[\"https:\/\/x.com\/egtra\"],\"url\":\"https:\/\/dev.activebasic.com\/egtra\/author\/admin\/\"}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"put_time\/put_money\u3068Boost.Format - \u30a4\u30b0\u30c8\u30e9\u30f3\u30b9\u306e\u982d\u306e\u4e2d","description":"C++\u306eput_time\u3084put_money\u30de\u30cb\u30d4\u30e5\u30ec\u30fc\u30bf\u306fBoost.Format\u3068\u4f75\u7528\u3067\u304d\u307e\u3059\u3002locale\u3084\u30de\u30cb\u30d4\u30e5\u30ec\u30fc\u30bf\u306e\u6307\u5b9a\u304c\u6a5f\u80fd\u3059\u308b\u3053\u3068\u3082\u78ba\u304b\u3081\u3066\u307f\u307e\u3057\u305f\u3002","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/dev.activebasic.com\/egtra\/2012\/07\/02\/496\/","og_locale":"ja_JP","og_type":"article","og_title":"put_time\/put_money\u3068Boost.Format - \u30a4\u30b0\u30c8\u30e9\u30f3\u30b9\u306e\u982d\u306e\u4e2d","og_description":"C++\u306eput_time\u3084put_money\u30de\u30cb\u30d4\u30e5\u30ec\u30fc\u30bf\u306fBoost.Format\u3068\u4f75\u7528\u3067\u304d\u307e\u3059\u3002locale\u3084\u30de\u30cb\u30d4\u30e5\u30ec\u30fc\u30bf\u306e\u6307\u5b9a\u304c\u6a5f\u80fd\u3059\u308b\u3053\u3068\u3082\u78ba\u304b\u3081\u3066\u307f\u307e\u3057\u305f\u3002","og_url":"https:\/\/dev.activebasic.com\/egtra\/2012\/07\/02\/496\/","og_site_name":"\u30a4\u30b0\u30c8\u30e9\u30f3\u30b9\u306e\u982d\u306e\u4e2d","article_publisher":"https:\/\/www.facebook.com\/ysk.noh","article_published_time":"2012-07-02T07:15:22+00:00","author":"egtra","twitter_card":"summary_large_image","twitter_creator":"@egtra","twitter_site":"@egtra","twitter_misc":{"\u57f7\u7b46\u8005":"egtra"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/dev.activebasic.com\/egtra\/2012\/07\/02\/496\/","url":"https:\/\/dev.activebasic.com\/egtra\/2012\/07\/02\/496\/","name":"put_time\/put_money\u3068Boost.Format - \u30a4\u30b0\u30c8\u30e9\u30f3\u30b9\u306e\u982d\u306e\u4e2d","isPartOf":{"@id":"https:\/\/dev.activebasic.com\/egtra\/#website"},"datePublished":"2012-07-02T07:15:22+00:00","dateModified":"2012-07-02T07:15:22+00:00","author":{"@id":"https:\/\/dev.activebasic.com\/egtra\/#\/schema\/person\/8de756b2ff20b964f64594dfe8f18164"},"description":"C++\u306eput_time\u3084put_money\u30de\u30cb\u30d4\u30e5\u30ec\u30fc\u30bf\u306fBoost.Format\u3068\u4f75\u7528\u3067\u304d\u307e\u3059\u3002locale\u3084\u30de\u30cb\u30d4\u30e5\u30ec\u30fc\u30bf\u306e\u6307\u5b9a\u304c\u6a5f\u80fd\u3059\u308b\u3053\u3068\u3082\u78ba\u304b\u3081\u3066\u307f\u307e\u3057\u305f\u3002","breadcrumb":{"@id":"https:\/\/dev.activebasic.com\/egtra\/2012\/07\/02\/496\/#breadcrumb"},"inLanguage":"ja","potentialAction":[{"@type":"ReadAction","target":["https:\/\/dev.activebasic.com\/egtra\/2012\/07\/02\/496\/"]}]},{"@type":"BreadcrumbList","@id":"https:\/\/dev.activebasic.com\/egtra\/2012\/07\/02\/496\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"\u30db\u30fc\u30e0","item":"https:\/\/dev.activebasic.com\/egtra\/"},{"@type":"ListItem","position":2,"name":"put_time\/put_money\u3068Boost.Format"}]},{"@type":"WebSite","@id":"https:\/\/dev.activebasic.com\/egtra\/#website","url":"https:\/\/dev.activebasic.com\/egtra\/","name":"\u30a4\u30b0\u30c8\u30e9\u30f3\u30b9\u306e\u982d\u306e\u4e2d","description":"\u982d\u306e\u4e2d\u306e\u304b\u3051\u3089\u3002ActiveBasic\u3092\u4e2d\u5fc3\u306b\u30d7\u30ed\u30b0\u30e9\u30df\u30f3\u30b0\u306e\u8a71\u3092\u307c\u3061\u307c\u3061\u3068\u3002","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/dev.activebasic.com\/egtra\/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"ja"},{"@type":"Person","@id":"https:\/\/dev.activebasic.com\/egtra\/#\/schema\/person\/8de756b2ff20b964f64594dfe8f18164","name":"egtra","sameAs":["https:\/\/x.com\/egtra"],"url":"https:\/\/dev.activebasic.com\/egtra\/author\/admin\/"}]}},"_links":{"self":[{"href":"https:\/\/dev.activebasic.com\/egtra\/wp-json\/wp\/v2\/posts\/496"}],"collection":[{"href":"https:\/\/dev.activebasic.com\/egtra\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/dev.activebasic.com\/egtra\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/dev.activebasic.com\/egtra\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/dev.activebasic.com\/egtra\/wp-json\/wp\/v2\/comments?post=496"}],"version-history":[{"count":0,"href":"https:\/\/dev.activebasic.com\/egtra\/wp-json\/wp\/v2\/posts\/496\/revisions"}],"wp:attachment":[{"href":"https:\/\/dev.activebasic.com\/egtra\/wp-json\/wp\/v2\/media?parent=496"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/dev.activebasic.com\/egtra\/wp-json\/wp\/v2\/categories?post=496"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/dev.activebasic.com\/egtra\/wp-json\/wp\/v2\/tags?post=496"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}