|
time_get::get_datepublic member function
iter_type get_date ( iter_type s, iter_type end, ios_base& str, ios_base::iostate& err, tm* t) const; Read date Parses the sequence of characters between s and end for a date sequence, and stores its values into the tm object pointed by t.The function extracts characters until the character extracted cannot be part of a valid date sequence expression or end is reached. The next character in the sequence is pointed by the iterator returned by the function. What constitutes a valid time sequence depends on the locale (it matches the 'x' specifier in the strftime C function). Generally, it is something similar to 01/01/01. If successful, the function may set any relevant members of the tm structure t. The remaining members are left unchanged. The function updates err with the error status if necessary: If the sequence of characters cannot produce any valid value for the tm struct t according to its formatting rules, the function sets err to ios_base::failbit. If the function exhausts the sequence of characters (i.e., it reaches end) during its operations, ios_base::eofbit is set in err (both failbit and eofbit may be set by a single operation). Otherwise, ios_base::goodbit is set as err's value, indicating success. During its operation, the version of this function in the generic template simply calls the virtual protected member do_get_date, which is the member function in charge of performing the actions described above. Parameters
Return valueThe next character in the sequence right after where the extraction operation ended.iter_type is a member alias of the second template parameter of time_get (i.e., the facet's iterator type). Example
Output:
See also
|