[#BloombergLP-bdlt-Date-2constructor-0e] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlt.adoc[bdlt]::xref:BloombergLP/bdlt/Date.adoc[Date]::Date :relfileprefix: ../../../ :mrdocs: Constructors == Synopses Declared in `<bdlt_date.h>` Create a `Date` object having the earliest supported date value, i.e., having a year/month/day representation of `0001/01/01`. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:BloombergLP/bdlt/Date/2constructor-0f.adoc[Date](); ---- [.small]#xref:BloombergLP/bdlt/Date/2constructor-0f.adoc[_» more..._]# Create a `Date` object having the value of the specified `original` date. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:BloombergLP/bdlt/Date/2constructor-048.adoc[Date](xref:BloombergLP/bdlt/Date.adoc[Date] const& original); ---- [.small]#xref:BloombergLP/bdlt/Date/2constructor-048.adoc[_» more..._]# Create a `Date` object having the value represented by the specified `year` and `dayOfYear`. The behavior is undefined unless `year` and `dayOfYear` represent a valid `Date` value (see `isValidYearDay`). [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:BloombergLP/bdlt/Date/2constructor-049.adoc[Date]( int year, int dayOfYear); ---- [.small]#xref:BloombergLP/bdlt/Date/2constructor-049.adoc[_» more..._]# Create a `Date` object having the value represented by the specified `year`, `month`, and `day`. The behavior is undefined unless `year`, `month`, and `day` represent a valid `Date` value (see `isValidYearMonthDay`). [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- xref:BloombergLP/bdlt/Date/2constructor-01.adoc[Date]( int year, int month, int day); ---- [.small]#xref:BloombergLP/bdlt/Date/2constructor-01.adoc[_» more..._]# [.small]#Created with https://www.mrdocs.com[MrDocs]#