Vertaling van "de Object" in Engels
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.
Par défaut, tous les objets qui descendent de Object héritent de cette méthode.
By default, this method is inherited by every object descended from Object.
Cependant, sauf cas particuliers (pour des raisons de performance notamment), il n'est pas nécessaire d'implémenter equals() car chaque classe dérive implicitement de Object, qui fournit déjà cette méthode.
However, you don't have to implement equals() except for special performance needs, because anytime you create a class it is implicitly inherited from Object, which has an equals().
Renvoie une représentation formatée de object sous forme de chaine de caractères.
Return the formatted representation of object as a string.
Renvoie la représentation formatée de object, suivie d'une fin de ligne.
Print the formatted representation of object on the configured stream, followed by a newline.
Le film offre une scène à « the unchosen », des objets qui n'ont pas été sélectionnés pour la première édition de Object Stories, mais méritent la même attention.
The film provides a platform for 'the unchosen', for objects that were not selected for the first iteration of Object Stories, but which he feels also deserve attention.
La classe importante est Sandwich, qui est au troisième niveau d'héritage (quatre, si vous comptez l'héritage implicite de Object) et qui a trois objets membres.
The important class is Sandwich, which reflects three levels of inheritance (four, if you count the implicit inheritance from Object) and three member objects.
Puisque ThreadGroup hérite de Object, qui contient la méthode wait(), vous pouvez aussi choisir de suspendre le programme pour un certain nombre de secondes en appelant wait(secondes 1000).
Since ThreadGroup is inherited from Object, which contains the wait() method, you can also choose to suspend the program for any number of seconds by calling wait(seconds 1000).
Autorise un objet à tenter de libérer des ressources et à exécuter d'autres opérations de nettoyage avant qu'il ne soit récupéré par une opération garbage collection. (Hérité de Object.)
Allows an object to try to free resources and perform other cleanup operations before it is reclaimed by garbage collection. (Inherited from Object.) GetComputers
Détermine si l'objet spécifié est identique à l'objet actuel.(Hérité de Object.)
Determines whether the specified object is equal to the current object.(Inherited from Object.)
La majorité des objets JavaScript sont des instances de Object qui est l'avant dernier maillon de la chaîne de prototype.
Nearly all objects in JavaScript are instances of Object which sits on the top of a prototype chain.
Retourne une chaîne qui représente l'objet actuel.(Hérité de Object.)
Returns a string that represents the current object.(Inherited from Object.)
Sert de fonction de hachage par défaut. (Hérité de Object.)
Serves as the default hash function. (Inherited from Object)
Tous les objets dans JavaScript sont les descendants de Object; tous les objets héritent des méthodes et des propriétés depuis Object.prototype, même s'ils peuvent être remplacés.
Object instances All objects in JavaScript are descended from Object; all objects inherit methods and properties from Object.prototype, although they may be overridden.