Vertaling van "valueOf" in Frans
We konden deze vermelding niet vinden. Er worden benaderende resultaten weergegeven. Controleer je spelling of stel voor deze term aan het woordenboek toe te voegen.
You can create a function to be called in place of the default valueOf method.
Il est possible de créer une fonction à appeler à la place de la méthode valueOf par défaut.
If an object has no primitive value, valueOf returns the object itself, which is displayed as
Si un objet n'a pas de valeur primitive, valueOf renvoie l'objet lui-même, ce qui sera affiché comme
To convert a primitive type to its wrapper counterpart, always use valueOf() that may use the cache, or let autoboxing do it for you.
Pour convertir un type primitif en son wrapper, il faut toujours utiliser valueOf() qui tente d'utiliser le cache, ou laisser faire l'autoboxing.
Overriding valueOf for custom objects
Surcharger valueOf pour des objets personnalisés
The valueOf() method returns the primitive value of the specified object.
Voir aussi La méthode valueOf() renvoie la valeur primitive d'un objet donné.
In this case, what happens is: The browser initially checks to see if the person1 object has a valueOf() method available on it.
Lorsque l'on effectue cet appel, il se produit les choses suivantes : Le navigateur tente de déterminer si l'objet personne1 implémente une méthode valueOf().
When we need to convert the blob into string then we could use toString and valueOf methods to convert it to string when required.
Lorsque nous avons besoin de convertir le blob en chaîne alors nous pourrions utiliser des méthodes toString et ValueOf pour le convertir en chaîne en cas de besoin.
A String object can always be converted to its primitive counterpart with the valueOf method.
Un objet String peut toujours être converti en son équivalent primitif grâce à la méthode valueOf().
You rarely need to invoke the valueOf method yourself; JavaScript automatically invokes it when encountering an object where a primitive value is expected.
Il est rarement nécessaire d'appeler soi-même la méthode valueOf ; JavaScript l'invoque automatiquement lorsqu'il rencontre un objet alors qu'il attend une valeur primitive.
By default, the valueOf method is inherited by every object descended from Object.
Par défaut, la méthode valueOf est héritée par tout objet descendant d'Object.
JAX-RS handles parsing of request data by looking for a valueOf() method or a constructor accepting a String in the custom target type.
JAX-RS traite le parsing des données de requête en recherchant, dans le type de classe cible, une méthode valueOf() ou un constructeur acceptant une String.
The valueOf() method returns the primitive value of a String object.
La méthode valueOf() renvoie la valeur primitive de l'objet String.
It doesn't either, so the browser then checks to see if the Person() constructor's prototype object's prototype object (Object() constructor's prototype) has a valueOf() method available on it.
Pas de valueOf() non plus, donc le navigateur regarde si le prototype objet du constructeur Personne() (Object) possède cette méthode.