[#BloombergLP-bdlt-Time-getTime] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlt.adoc[bdlt]::xref:BloombergLP/bdlt/Time.adoc[Time]::getTime :relfileprefix: ../../../ :mrdocs: Load the time‐of‐day attributes of this object into the given addresses. == Synopsis Declared in `<bdlt_time.h>` [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void getTime( int* hour, int* minute = 0, int* second = 0, int* millisecond = 0, int* microsecond = 0) const; ---- == Description Load, into the specified `hour`, and the optionally specified `minute`, `second`, `millisecond`, and `microsecond`, the respective `hour`, `minute`, `second`, `millisecond`, and `microsecond` attribute values from this time object. Unspecified arguments default to 0. Supplying 0 for an address argument suppresses the loading of the value for the corresponding attribute, but has no effect on the loading of other attribute values. == Parameters [cols="1,4"] |=== | Name| Description | *hour* | receives the hour attribute | *minute* | receives the minute attribute (optional) | *second* | receives the second attribute (optional) | *millisecond* | receives the millisecond attribute (optional) | *microsecond* | receives the microsecond attribute (optional) |=== [.small]#Created with https://www.mrdocs.com[MrDocs]#