:relfileprefix: ../../../ [#boost-urls-url_view-2constructor-0c] == xref:boost.adoc[pass:[boost]]::xref:boost/urls.adoc[pass:[urls]]::xref:boost/urls/url_view.adoc[pass:[url_view]]::url_view Constructor === Synopsis Declared in header `` [source,cpp,subs="verbatim,macros,-callouts"] ---- url_view() noexcept; ---- === Description Default constructed views refer to a string with zero length, which always remains valid. This matches the grammar for a relative-ref with an empty path and no query or fragment. [,cpp] ---- url_view u; ---- [,cpp] ---- this->empty() == true ---- === Constant. === Throws nothing. [,cpp] ---- relative-ref = relative-part [ "?" query ] [ "#" fragment ] ---- === 4.2. Relative Reference (rfc3986)