:relfileprefix: ../../../ [#boost-urls-url-2constructor-0f7] == xref:boost.adoc[pass:[boost]]::xref:boost/urls.adoc[pass:[urls]]::xref:boost/urls/url.adoc[pass:[url]]::url Constructor === Synopsis Declared in header `` [source,cpp,subs="verbatim,macros,-callouts"] ---- url(xref:boost/urls/url.adoc[url] const& u); ---- === Description The newly constructed object contains a copy of `u`. [,cpp] ---- this->buffer() == u.buffer() && this->buffer().data() != u.buffer().data() ---- === Linear in `u.size()`. === Strong guarantee. Calls to allocate may throw. === Exceptions |=== | Name | Thrown on | ``u.size()` | > max_size()`. |=== === Parameters |=== | Name | Description | *u* | The url to copy. |===