Examples with "arraylist de" and their translation 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.
En este caso las reglas pueden retornar un arraylist de usuarios o un entero con el id de un usuario que se desea configurar.
In this case, the rules can return an array list of users or an integer with the user id that you want to configure.
Por lo tanto, para crear una ArrayList de, digamos, java.lang.Integer, usted haría lo siguiente
So, to create an ArrayList of, say, java.lang.Integer, you'd do this
Andere resultaten
Quita todos los elementos de ArrayList.
Quita todos los elementos de ArrayList.
Un ArrayList puede ser declarado de la siguiente forma
¿Cómo evalúa los objetos el método contains () de un ArrayList?
How does a ArrayList's contains() method evaluate objects?
Con el diseño principal listo Primero creamos una instancia de ArrayList, que usaremos para almacenar los seis números.
We first create an ArrayList instance, which we use to store the six numbers in.
Por ejemplo, cuando Wsdl.exe encuentra un tipo ArrayList en una descripción de servicio, crea Object Array en la clase de proxy generada.
For example, when Wsdl.exe encounters an ArrayList type in a service description, it creates an Object Array in the generated proxy class.
En el ejemplo anterior el objeto Hash-Table es utilizado para retornar la lista de propiedades de los usuarios que han trabajado en el caso y luego llenar y retornar el arraylist con los ID's de esos usuarios.
In the last example the hash-table is used to return the list of properties of the users that has been working in the case and then fill the arraylist with all the idUsers and return the arraylist.
Ya ha visto cómo crear una instancia de la Lista al crear una instancia de su tipo de implementación de ArrayList, por lo que comenzará desde allí.
You've already seen how to create an instance of List by instantiating its ArrayList implementation type, so you can start from there.
En este ejemplo vamos a ver como podemos eliminar todos los elementos de un ArrayList.
We can also use ArrayList methods to add elements to or remove elements from an ArrayList.
La longitud de un ArrayList puede ser obtenida mediante el método size() mientras su capacidad aumenta automáticamente iniciando en 10.
The length of an ArrayLis can be obtained using the size() method while its capacity automatically increases starting with a value of 10.
La ventaja de ArrayList por sobre un array común es que es expansible, es decir que crece a medida que se le añaden elementos (mientras que el tamaño de un array es fijo desde su creación).
The advantage of ArrayList over a simple array is that it's expansible, meaning that it grows as you add elements (while the size of an array is fixed since its creation).