LPSTR on the other hand is not const and may be changed.
Por otro lado LPSTR no es constante y puede ser modificado.
Unlike C++, C does not permit methods and parameters to be marked as const.
El contrario que C++, C no permite calificar métodos y parámetros con const.
To fix that you just need to write a'const' before in the appropriate lines.
Para solucionarlo necesitas escribir una constante antes de las líneas apropiadas.
The type of the first string is the usual const char.
El tipo del primer string es el habitual const char.
In this case, the ken_len=6 andonly one const in the ref column means only one index column is used as access predicate.
En este caso,ken_len=6 y el valor const en ref indica que una sola columna del índice se usa como predicado de acceso.
Pres. VYanukovych has 24h to sign 04 Const. into law.
El presidente Yanukovych tiene 24 horas para firmar la Constitución de 2004 y pasarla a ser ley.
For this reason, some favor using const in parameters only for pass-by-reference, where it changes the contract, but not for pass-by-value.
Por ello, se suele favorecer el uso de const en parámetros pasados por referencia, pero no en los parámetros pasados por valor.
Added: heredoc and nowdoc support for class const and property definitions.
Añadido: El soporte para heredoc y nowdoc para constantes de clase y definición de propiedades.
Ordinary jurisdiction is exercised by ordinary judges andprosecutors Article 102 Const.
La jurisdicción ordinaria es competencia de los jueces yfiscales ordinarios artículo 102 de la Constitución.
A notable example is in Java, where const and goto are reserved words- they have no meaning in Java but they also cannot be used as identifiers.
En Java const y goto son palabras reservadas- no tienen significado en Java, pero tampoco pueden ser usadas como identificadores.
The immutability concept of D is represented by the const and immutable keywords.
El concepto de inmutabilidad de D está representado por la const y palabras clave inmutables.
In order to avoid changes in actual parameters(arguments passed at function call)use the access specifier const.
Para excluir los cambios de los parámetros actuales(argumentos pasados al invocar una función)es necesario usar el especificador de acceso const.
It must be declared as the void type andshould have one parameter of the const int type, which contains the code of deinitialization reason.
Tiene que ser declarada con el tipo void ytener un parámetro del tipo const int que contiene el código de la causa de deinicialización.
I want to remind you that the Supreme Pontiff is the first superior to whom we owe obedience Const., 133.
Les recuerdo que el Soberano Pontífice es el primer superior a quien debemos obediencia Constituciones, 113.
In some languages, this is done with a keyword(e.g. const in C++, final in Java) that designates the field as immutable.
En algunos lenguajes este comportamiento se consigue con el uso de una palabra clave(como const en C++, final en Java) que indica que el campo será inmutable.
Considering pointers, a final reference in Java means something similar to const pointer in C.
Respecto a los punteros, una referencia final en Java tiene un significado similar a un puntero constante en C.
The second kind, defined as L"",produces a null-terminated array of type const wchar_t, where wchar_t is a wide-character of undefined size and semantics.
La segunda clase, definida como L"",produce un arreglo terminado en null de tipo const wchar_t, donde wchar_t es un carácter ancho.
It is appropriate that“[a]t the death of the Holy Father and of the local bishop,each member offers special prayers for them” Const., 100.
Conviene que“A la muerte del Soberano Pontífice y del Obispo del lugar,cada miembro ofrece por ellos, oraciones especiales” Constituciones, 100.
Java's final and C++'s const keywords have the same meaning when applied with primitive variables. const int i 3;// C++ declaration i 4;// Error!
El final de Java y el const de C++ tienen el mismo significado al aplicarse sobre tipos básicos. const int i 3;// declaración C++ i 4;// Error!
Also, C++11 stated that all non-static member functions that were declared constexpr were also implicitly declared const, with respect to this.
También, C++11 sostiene que todos los miembros de las funciones no estáticas que son declaradas constexpr son también implícitamente declaradas const, con respecto a this.
The const modifier on an instance method applies to the object pointed to by the"this" pointer, which is an implicit argument passed to all instance methods.
El calificador const aplicado sobre un método de instancia afecta al objeto apuntado por el puntero this, que es un argumento implícito pasado a todos los métodos de instancia.
It is thought that the reservation of the keyword occurred to allow for an extension of the Java language to include C++-style const methods and pointer to const type.
Esta palabra clave fue reservada para desarrollar una extensión del lenguaje Java que incluyese métodos const y punteros a tipos const al estilo C.
For pointer and reference types, the meaning of const is more complicated- either the pointer itself, or the value being pointed to, or both, can be const.
El significado de const es más complicado para punteros y referencias-tanto el puntero como el dato apuntado, incluso ambos, pueden ser calificados con const.
While const methods can be called by const and non-const objects alike, non-const methods can only be invoked by non-const objects.
Los métodos calificados con const pueden ser llamados desde objetos constantes y no constantes indistintamente, mientras que los métodos sin calificación const sólo pueden llamarse desde objetos no constantes.
For example, in C++03 this is disallowed: template Ret adding_func(const Lhs&lhs, const Rhs&rhs){return lhs+ rhs;}//Ret must be the type of lhs+rhs The type Ret is whatever the addition of types Lhs and Rhs will produce.
Lo siguiente, por ejemplo, no es permitido en C++03: template Ret funcion_de_suma(const Lhs&lhs, const Rhs&rhs){return lhs+ rhs;}// Ret debe ser el tipo de lhs+rhs El tipo Ret es cualquier cosa que la adición de los tipos Lhs y Rhs produzca.
The following code illustrates these subtleties: void Foo( int* ptr,int const* ptrToConst, int* const constPtr, int const* const constPtrToConst){*ptr 0;// OK: modifies the"pointee" data ptr NULL;// OK: modifies the pointer*ptrToConst 0;// Error!
El siguiente ejemplo ilustra estos matices: void Foo( int* puntero,int const* punteroAConst, int* const punteroConstante, int const* const punteroConstanteAConst){*puntero 0;// Correcto: modifica el dato apuntado puntero NULL;// Correcto: modifica el puntero*punteroAConst 0;// Error!
Español
Dansk
Deutsch
Français
हिंदी
Italiano
Nederlands
Português
Русский
Tagalog
عربى
Български
বাংলা
Český
Ελληνικά
Suomi
עִברִית
Hrvatski
Magyar
Bahasa indonesia
日本語
Қазақ
한국어
മലയാളം
मराठी
Bahasa malay
Norsk
Polski
Română
Slovenský
Slovenski
Српски
Svenska
தமிழ்
తెలుగు
ไทย
Turkce
Українська
اردو
Tiếng việt
中文