Condividi tramite


Operatore value::operator[]

Accedere a un campo di un oggetto JSON.

_ASYNCRTIMP value & operator [] (
   const utility::string_t &key
);

_ASYNCRTIMP const value & operator [] (
   const utility::string_t &key
) const;

_ASYNCRTIMP value & operator [] (
   size_t index
);

_ASYNCRTIMP const value & operator [] (
   size_t index
) const;

Parametri

  • key
    Nome del campo

  • index
    L'indice di un elemento è la matrice JSON.

Valore restituito

Riferimento al valore mantenuto nel campo

Requisiti

Intestazione: json.h

Spazio dei nomi: web::json

Vedere anche

Riferimenti

Classe value