:relfileprefix: ../../../ [#boost-urls-param_pct_view-2constructor-00] == xref:boost.adoc[pass:[boost]]::xref:boost/urls.adoc[pass:[urls]]::xref:boost/urls/param_pct_view.adoc[pass:[param_pct_view]]::param_pct_view Constructor === Synopsis Declared in header `` [source,cpp,subs="verbatim,macros,-callouts"] ---- constexpr param_pct_view() = default; ---- === Description Default constructed query parameters have an empty key and no value. [,cpp] ---- param_pct_view qp; ---- [,cpp] ---- this->key == "" && this->value == "" && this->has_value == false ---- === Constant. === Throws nothing.