Espacios de nombres
Variantes
Acciones

std::localeconv

De cppreference.com
< cpp‎ | locale
 
 
 
Definido en el archivo de encabezado <clocale>
std::lconv* localeconv();
La función localeconv obtiene un puntero a un objeto estático de std::lconv tipo, que representa las reglas de formato numérico y monetario de la actual configuración regional C. .
Original:
The localeconv function obtains a pointer to a static object of type std::lconv, which represents numeric and monetary formatting rules of the current C locale.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

Contenido

[editar] Parámetros

(Ninguno)
Original:
(none)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[editar] Valor de retorno

Pointer to the current std::lconv object.

[editar] Notas

Modificación de las referencias a objetos a través del puntero devuelto es un comportamiento indefinido .
Original:
Modifying the object references through the returned pointer is undefined behavior.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
std::localeconv modifica un objeto estático, llamándola desde diferentes hilos sin sincronización es un comportamiento indefinido .
Original:
std::localeconv modifies a static object, calling it from different threads without synchronization is undefined behavior.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.

[editar] Ejemplo

#include <clocale>
#include <iostream>
 
int main()
{
    std::setlocale(LC_ALL, "ja_JP.UTF-8");
    std::lconv* lc = std::localeconv();
    std::cout << "Japanese currency symbol: " << lc->currency_symbol
              << '(' << lc->int_curr_symbol << ")\n";
}

Salida:

Japanese currency symbol: ¥(JPY )

[editar] Ver también

Obtiene y establece la configuración regional actual de C.
(función) [editar]
Detalles de formato, devueltos por std::localeconv.
(clase) [editar]
Documentación de C para localeconv