CARVIEW |
Select Language
HTTP/1.1 301 Moved Permanently
Server: nginx
Date: Tue, 29 Jul 2025 12:56:48 GMT
Content-Type: text/html; charset=UTF-8
Transfer-Encoding: chunked
Connection: keep-alive
Location: /reference/locale/time_get/
HTTP/1.1 200 OK
Server: nginx
Date: Tue, 29 Jul 2025 12:56:48 GMT
Content-Type: text/html; charset=utf-8
Transfer-Encoding: chunked
Connection: keep-alive
ETag: W/"9e7c-VoA98xIFDqYnxH8pzW5LQ4Y1RWA"
Content-Encoding: gzip
The time_get standard facet parses sequences of characters to read date and time information and stores it into a tm structure.
The time_get class template has a protected destructor: Programs shall only construct objects of derived classes, or use those installed in locale objects (through use_facet).
All standard locale objects support at least the following facet instantiations of the time_get class template (as part of the time category):
The class also inherits time_base::dateorder, which is used as the return type for member date_order.
The class also contains a public static constant of type locale::id, that uniquely identifies facets with time_get semantics.
Along with the class destructor:
Where InputIterator shall be a type that satisfies the requirements of an input iterator able to iterate over elements of the specified character type.
Reference
C library:
- <cassert> (assert.h)
- <cctype> (ctype.h)
- <cerrno> (errno.h)
-
<cfenv> (fenv.h)C++11
- <cfloat> (float.h)
-
<cinttypes> (inttypes.h)C++11
- <ciso646> (iso646.h)
- <climits> (limits.h)
- <clocale> (locale.h)
- <cmath> (math.h)
- <csetjmp> (setjmp.h)
- <csignal> (signal.h)
- <cstdarg> (stdarg.h)
-
<cstdbool> (stdbool.h)C++11
- <cstddef> (stddef.h)
-
<cstdint> (stdint.h)C++11
- <cstdio> (stdio.h)
- <cstdlib> (stdlib.h)
- <cstring> (string.h)
-
<ctgmath> (tgmath.h)C++11
- <ctime> (time.h)
-
<cuchar> (uchar.h)C++11
- <cwchar> (wchar.h)
- <cwctype> (wctype.h)
Containers:
-
<array>C++11
- <deque>
-
<forward_list>C++11
- <list>
- <map>
- <queue>
- <set>
- <stack>
-
<unordered_map>C++11
-
<unordered_set>C++11
- <vector>
-
Input/Output:
Multi-threading:
-
<atomic>C++11
-
<condition_variable>C++11
-
<future>C++11
-
<mutex>C++11
-
<thread>C++11
-
Other:
- <algorithm>
- <bitset>
-
<chrono>C++11
-
<codecvt>C++11
- <complex>
- <exception>
- <functional>
-
<initializer_list>C++11
- <iterator>
- <limits>
- <locale>
- <memory>
- <new>
- <numeric>
-
<random>C++11
-
<ratio>C++11
-
<regex>C++11
- <stdexcept>
- <string>
-
<system_error>C++11
-
<tuple>C++11
-
<type_traits>C++11
-
<typeindex>C++11
- <typeinfo>
- <utility>
- <valarray>
<locale>
- has_facet
- locale
- use_facet
-
wbuffer_convertC++11
-
wstring_convertC++11
functions
standard facets
time_get
- time_get::time_get
public member functions
protected members
class template
<locale>
std::time_get
template <class charT, class InputIterator = istreambuf_iterator<charT> > class time_get;
Facet to parse dates and times
- locale::facettime_base
- time_get
The time_get standard facet parses sequences of characters to read date and time information and stores it into a tm structure.
The time_get class template has a protected destructor: Programs shall only construct objects of derived classes, or use those installed in locale objects (through use_facet).
All standard locale objects support at least the following facet instantiations of the time_get class template (as part of the time category):
facets in locale objects | notes |
---|---|
time_get<char> | narrow characters, for use with istream iterators |
time_get<wchar_t> | wide characters, for use with wistream iterators |
Template parameters
- charT
- Character type: the type of the characters in the sequence to interpret.
Aliased as member char_type.
- InputIterator
- Input iterator type that points to the elements in the character sequence to interpret.
Defaults to istreambuf_iterator, which is an iterator that can be implicitly converted from basic_istream objects.
Aliased as member iter_type.
Member types
member type | definition | description |
---|---|---|
char_type | The first template parameter (charT) | Character type |
iter_type | The second template parameter (InputIterator) | Iterator type. Defaults to istreambuf_iterator<charT> |
Member constants
The following member constants are inherited from time_base (as labels ofenum
type time_base::dateorder); They are used as return values by certain member functions.member constant | type | value | description |
---|---|---|---|
no_order | time_base::dateorder | 0 | No specific order, or format contains variable components other than day, month and year. |
dmy | time_base::dateorder | 1 | day, month, year |
mdy | time_base::dateorder | 2 | month, day, year |
ymd | time_base::dateorder | 3 | year, month, day |
ydm | time_base::dateorder | 4 | year, day, month |
The class also contains a public static constant of type locale::id, that uniquely identifies facets with time_get semantics.
Public member functions
- (constructor)
- time_get constructor (public member function)
- date_order
- Return date order (public member function)
- get_time
- Read time (public member function)
- get_date
- Read date (public member function)
- get_weekday
- Read weekday (public member function)
- get_monthname
- Read month name (public member function)
- get_year
- Read year (public member function)
- get
- Read time and date (public member function)
Virtual protected member functions
The class defines the virtual protected members which implement the behavior by default of their respective public member functions:- do_date_order
- Return date order [virtual] (protected virtual member function)
- do_get_time
- Read time [virtual] (protected virtual member function)
- do_get_date
- Read date [virtual] (protected virtual member function)
- do_get_weekday
- Read weekday [virtual] (protected virtual member function)
- do_get_monthname
- Read month name [virtual] (protected virtual member function)
- do_get_year
- Read year [virtual] (protected virtual member function)
- do_get
- Read time and date [virtual] (protected virtual member function)
Along with the class destructor:
- (destructor)
- time_get destructor (protected member function)
Specializations
At least the following specializations and partial specializations of this template are provided in all library implementations:specialization |
---|
time_get<char> |
time_get<wchar_t> |
template <class InputIterator> time_get<char,InputIterator> |
template <class InputIterator> time_get<wchar_t,InputIterator> |
Where InputIterator shall be a type that satisfies the requirements of an input iterator able to iterate over elements of the specified character type.
Home page | Privacy policy
© cplusplus.com, 2000-2025 - All rights reserved - v3.3.4s
Spotted an error? contact us
© cplusplus.com, 2000-2025 - All rights reserved - v3.3.4s
Spotted an error? contact us