Giriş
stream'e yazdırma için kullanırız.
Constructor
Şöyle yaparız.
Şöyle yaparız.
stream'e yazdırma için kullanırız.
Constructor
Şöyle yaparız.
boost::gregorian::date_facet("%Y-%m-%d %H:%M:%S");
Şöyle yaparız.auto dfacet
= new boost::gregorian::date_facet("%m/%d/%Y");
Örnek 1Şöyle yaparız.
const std::locale fmt(std::locale::classic(),
new boost::gregorian::date_facet("%m/%d/%Y"));
std::string dateAsMMDDYYYY( const boost::gregorian::date& date )
{
std::ostringstream os;
os.imbue(fmt);
os << date;
return os.str();
}
Hiç yorum yok:
Yorum Gönder