Reference
C Library
IOstream Library
Strings library
STL Containers
STL Algorithms
Miscellaneous
Miscellaneous
complex
exception
functional
iterator
limits
locale
memory
new
numeric
stdexcept
typeinfo
utility
valarray
locale
has_facet
isalnum
isalpha
iscntrl
isdigit
isgraph
islower
isprint
ispunct
isspace
isupper
isxdigit
locale
tolower
toupper
use_facet
standard facets:
codecvt
codecvt_base
codecvt_byname
collate
collate_byname
ctype
ctype_base
ctype_byname
messages
messages_base
messages_byname
moneypunct
moneypunct_byname
money_base
money_get
money_put
numpunct
numpunct_byname
num_get
num_put
time_base
time_get
time_get_byname
time_put
time_put_byname
time_get
time_get::time_get
public member functions:
time_get::date_order
time_get::get_date
time_get::get_monthname
time_get::get_time
time_get::get_weekday
time_get::get_year
public member types:
time_get::char_type
time_get::dateorder
time_get::iter_type
protected members:
time_get::do_date_order
time_get::do_get_date
time_get::do_get_monthname
time_get::do_get_time
time_get::do_get_weekday
time_get::do_get_year
time_get::~time_get


time_get::get_year

public member function
iter_type get_year ( iter_type s, iter_type end, ios_base& str,
                     ios_base::iostate& err, tm* t) const;

Read year

Parses the sequence of characters between s and end for a year, and stores its value into the tm object pointed by t.

The function extracts characters until the character extracted cannot be part of a valid year or end is reached. The next character in the sequence is pointed by the iterator returned by the function.

What constitutes a valid year, or the interpretation of two-digit years, depends on the implementation and the locale (it matches the 'y' or 'Y' specifiers in the strftime C function).

If successful, the function may set any relevant members of the tm structure t (generally, tm_year). 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_year, which is the member function in charge of performing the actions described above.

Parameters

s, end
Iterators pointing to the beginning and ending characters of the sequence. The range used is [s,end), which contains all the characters between s and end, including the character pointed by s but not the character pointed by end.
iter_type is a member alias of the second template parameter of time_get (i.e., the facet's iterator type).
str
Object of a class derived from ios_base (generally an input stream object). It is used to obtain formatting information.
err
Stream error state object, of type ios_base::iostate where the resulting state will be stored.
t
Pointer to an object of type struct tm (see ctime), whose members may be set by a call to this member function.

Return value

The 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

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// time_get::get_year example
#include <iostream>
#include <sstream>
#include <locale>
using namespace std;
int main ()
{
  locale loc;    // "C" locale
  // get time_get facet:
  const time_get<char>& tmget = use_facet <time_get<char> > (loc);
  ios::iostate state;
  istringstream iss ("2009");
  istreambuf_iterator<char> itbegin (iss);  // beginning of iss
  istreambuf_iterator<char> itend;          // end-of-stream
  tm when;
  tmget.get_year (itbegin, itend, iss, state, &when);
  cout << "tm_year: " << when.tm_year << endl;
  return 0;
}


Output:

tm_year: 109
Notice that 109 in tm_year is interpreted as the year 2009 (see struct tm for more info).

See also