std::ctime
De cppreference.com
|
|
Esta página se ha traducido por ordenador/computador/computadora de la versión en inglés de la Wiki usando Google Translate.
La traducción puede contener errores y palabras aparatosas/incorrectas. Planea sobre el texto para ver la versión original. Puedes ayudar a corregir los errores y mejorar la traducción. Para instrucciones haz clic aquí. |
| Definido en el archivo de encabezado <ctime>
|
||
char* ctime( const std::time_t* time ); |
||
Convierte dado tiempo desde la época para un tiempo de calendario local y luego a una representación textual, como si se aplicase
std::asctime(std::localtime(time)). La cadena resultante tiene el siguiente formato:Original:
Converts given time since epoch to a calendar local time and then to a textual representation, as if by calling
std::asctime(std::localtime(time)). The resulting string has the following format:The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Www Mmm dd hh:mm:ss yyyy
Www- el día de la semana (uno deMon,Tue,Wed,Thu,Fri,Sat,Sun) .Original:Www- the day of the week (one ofMon,Tue,Wed,Thu,Fri,Sat,Sun).The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.Mmm- el mes (una deJan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec) .Original:Mmm- the month (one ofJan,Feb,Mar,Apr,May,Jun,Jul,Aug,Sep,Oct,Nov,Dec).The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.dd- el día del mesOriginal:dd- the day of the monthThe text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.hh- horasOriginal:hh- hoursThe text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.mm- minutosOriginal:mm- minutesThe text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.ss- segundosOriginal:ss- secondsThe text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.yyyy- añosOriginal:yyyy- yearsThe text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
La función no es compatible con localización .
Original:
The function does not support localization.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Parámetros
| time | - | puntero a un objeto std::time_t especificando el tiempo de imprimir
Original: pointer to a std::time_t object specifying the time to print The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. |
Valor de retorno
Puntero a una cadena de caracteres terminada en cero estático celebración de la representación textual de fecha y hora. La cadena puede ser compartida entre
std::asctime y std::ctime, y puede ser sobreescrita en cada invocación de cualquiera de estas funciones .Original:
Pointer to a static null-terminated character string holding the textual representation of date and time. The string may be shared between
std::asctime and std::ctime, and may be overwritten on each invocation of any of those functions.The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Notas
Esta función devuelve un puntero a datos estáticos y no es seguro para subprocesos. Además, se modifica el objeto std::tm estática que puede ser compartida con std::gmtime y std::localtime. POSIX marca esta función obsoleta y recomienda std::strftime lugar .
Original:
This function returns a pointer to static data and is not thread-safe. In addition, it modifies the static std::tm object which may be shared with std::gmtime and std::localtime. POSIX marks this function obsolete and recommends std::strftime instead.
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
El comportamiento puede ser definido por los valores de time_t que resultan en la cadena de más de 25 caracteres (por ejemplo, año 10000)
Original:
The behavior may be undefined for the values of time_t that result in the string longer than 25 characters (e.g. year 10000)
The text has been machine-translated via Google Translate.
You can help to correct and verify the translation. Click here for instructions.
You can help to correct and verify the translation. Click here for instructions.
Ejemplo
Ejecuta este código
#include <ctime>
#include <iostream>
int main()
{
std::time_t result = std::time(NULL);
std::cout << std::ctime(&result);
}
Salida:
Tue Dec 27 17:21:29 2011
Ver también
Convierte un objeto tm a una representación textual. (función) | |
Convierte un objeto tm a una representación textual personalizada. (función) | |
(C++11) |
formatos y las salidas un valor de fecha / tiempo de acuerdo con el formato especificado Original: formats and outputs a date/time value according to the specified format The text has been machine-translated via Google Translate. You can help to correct and verify the translation. Click here for instructions. (plantilla de función) |
Documentación de C para ctime
| |