Notice: This page requires JavaScript to function properly.
Please enable JavaScript in your browser settings or update your browser.
Using Libraries In Our Code | Deep Java Structure
Java Extended
course content

Contenido del Curso

Java Extended

Java Extended

1. Deep Java Structure
2. Methods
3. String Advanced
4. Classes
5. Classes Advanced

bookUsing Libraries In Our Code

java.util.Arrays

Let's move on to practice, and as an example, we will use the library java.util.Arrays. We can see that the parent library is java, followed by the child library util, and then the specific library we need, Arrays.

java

Main

copy
1
import java.util.Arrays;

We have already mentioned this library in the course on arrays when discussing array methods. Now, let's see how we can use these methods in code using an example:

java

Main

copy
12345678910111213141516171819
package com.example; // do not modify the code below this comment // importing Arrays library into our code import java.util.Arrays; public class Main { public static void main(String[] args) { // creating an int array with some unsorted values int[] array = {1, 5, 6, 2, 0, -4, 2}; // using Arrays library to sort our elements Arrays.sort(array); // printing each element from the sorted array to the console for (int element : array) { System.out.print(element + " "); } } }

Let's go through the code written above.

We import the necessary library and use a class from that library to call its sorting method. You can see the syntax of how we use it: ClassName.methodName(array);. You can also see that the sorted array is printed in the console, with values displayed from smallest to largest. The method we imported from the Arrays library handled the sorting.

Let's also take a look at another method from Arrays - fill.

java

Main

copy
12345678910111213141516171819
package com.example; // do not modify the code below this comment // importing Arrays library into our code import java.util.Arrays; public class Main { public static void main(String[] args) { // creating an int array with some different values int[] array = {1, 5, 6, 2, 0, -4, 2}; // using Arrays library to fill the array with the value "1" Arrays.fill(array, 1); // printing each element from the filled array to the console for (int element : array) { System.out.print(element + " "); } } }

We have the same integer array, but we're not sorting it this time. Instead, we're replacing each element of the array with a specified value. Notice that we first specify the array we want to fill in the parentheses, and then we provide the value with which we want to fill the array.

After all the operations, you can see that the array displayed on the screen consists of all elements equal to 1.

Tarea

  1. Import the Arrays library.
  2. Sort the given array of char elements.
  3. Display the sorted array on the screen.

Switch to desktopCambia al escritorio para practicar en el mundo realContinúe desde donde se encuentra utilizando una de las siguientes opciones
¿Todo estuvo claro?

¿Cómo podemos mejorarlo?

¡Gracias por tus comentarios!

Sección 1. Capítulo 5
toggle bottom row

bookUsing Libraries In Our Code

java.util.Arrays

Let's move on to practice, and as an example, we will use the library java.util.Arrays. We can see that the parent library is java, followed by the child library util, and then the specific library we need, Arrays.

java

Main

copy
1
import java.util.Arrays;

We have already mentioned this library in the course on arrays when discussing array methods. Now, let's see how we can use these methods in code using an example:

java

Main

copy
12345678910111213141516171819
package com.example; // do not modify the code below this comment // importing Arrays library into our code import java.util.Arrays; public class Main { public static void main(String[] args) { // creating an int array with some unsorted values int[] array = {1, 5, 6, 2, 0, -4, 2}; // using Arrays library to sort our elements Arrays.sort(array); // printing each element from the sorted array to the console for (int element : array) { System.out.print(element + " "); } } }

Let's go through the code written above.

We import the necessary library and use a class from that library to call its sorting method. You can see the syntax of how we use it: ClassName.methodName(array);. You can also see that the sorted array is printed in the console, with values displayed from smallest to largest. The method we imported from the Arrays library handled the sorting.

Let's also take a look at another method from Arrays - fill.

java

Main

copy
12345678910111213141516171819
package com.example; // do not modify the code below this comment // importing Arrays library into our code import java.util.Arrays; public class Main { public static void main(String[] args) { // creating an int array with some different values int[] array = {1, 5, 6, 2, 0, -4, 2}; // using Arrays library to fill the array with the value "1" Arrays.fill(array, 1); // printing each element from the filled array to the console for (int element : array) { System.out.print(element + " "); } } }

We have the same integer array, but we're not sorting it this time. Instead, we're replacing each element of the array with a specified value. Notice that we first specify the array we want to fill in the parentheses, and then we provide the value with which we want to fill the array.

After all the operations, you can see that the array displayed on the screen consists of all elements equal to 1.

Tarea

  1. Import the Arrays library.
  2. Sort the given array of char elements.
  3. Display the sorted array on the screen.

Switch to desktopCambia al escritorio para practicar en el mundo realContinúe desde donde se encuentra utilizando una de las siguientes opciones
¿Todo estuvo claro?

¿Cómo podemos mejorarlo?

¡Gracias por tus comentarios!

Sección 1. Capítulo 5
toggle bottom row

bookUsing Libraries In Our Code

java.util.Arrays

Let's move on to practice, and as an example, we will use the library java.util.Arrays. We can see that the parent library is java, followed by the child library util, and then the specific library we need, Arrays.

java

Main

copy
1
import java.util.Arrays;

We have already mentioned this library in the course on arrays when discussing array methods. Now, let's see how we can use these methods in code using an example:

java

Main

copy
12345678910111213141516171819
package com.example; // do not modify the code below this comment // importing Arrays library into our code import java.util.Arrays; public class Main { public static void main(String[] args) { // creating an int array with some unsorted values int[] array = {1, 5, 6, 2, 0, -4, 2}; // using Arrays library to sort our elements Arrays.sort(array); // printing each element from the sorted array to the console for (int element : array) { System.out.print(element + " "); } } }

Let's go through the code written above.

We import the necessary library and use a class from that library to call its sorting method. You can see the syntax of how we use it: ClassName.methodName(array);. You can also see that the sorted array is printed in the console, with values displayed from smallest to largest. The method we imported from the Arrays library handled the sorting.

Let's also take a look at another method from Arrays - fill.

java

Main

copy
12345678910111213141516171819
package com.example; // do not modify the code below this comment // importing Arrays library into our code import java.util.Arrays; public class Main { public static void main(String[] args) { // creating an int array with some different values int[] array = {1, 5, 6, 2, 0, -4, 2}; // using Arrays library to fill the array with the value "1" Arrays.fill(array, 1); // printing each element from the filled array to the console for (int element : array) { System.out.print(element + " "); } } }

We have the same integer array, but we're not sorting it this time. Instead, we're replacing each element of the array with a specified value. Notice that we first specify the array we want to fill in the parentheses, and then we provide the value with which we want to fill the array.

After all the operations, you can see that the array displayed on the screen consists of all elements equal to 1.

Tarea

  1. Import the Arrays library.
  2. Sort the given array of char elements.
  3. Display the sorted array on the screen.

Switch to desktopCambia al escritorio para practicar en el mundo realContinúe desde donde se encuentra utilizando una de las siguientes opciones
¿Todo estuvo claro?

¿Cómo podemos mejorarlo?

¡Gracias por tus comentarios!

java.util.Arrays

Let's move on to practice, and as an example, we will use the library java.util.Arrays. We can see that the parent library is java, followed by the child library util, and then the specific library we need, Arrays.

java

Main

copy
1
import java.util.Arrays;

We have already mentioned this library in the course on arrays when discussing array methods. Now, let's see how we can use these methods in code using an example:

java

Main

copy
12345678910111213141516171819
package com.example; // do not modify the code below this comment // importing Arrays library into our code import java.util.Arrays; public class Main { public static void main(String[] args) { // creating an int array with some unsorted values int[] array = {1, 5, 6, 2, 0, -4, 2}; // using Arrays library to sort our elements Arrays.sort(array); // printing each element from the sorted array to the console for (int element : array) { System.out.print(element + " "); } } }

Let's go through the code written above.

We import the necessary library and use a class from that library to call its sorting method. You can see the syntax of how we use it: ClassName.methodName(array);. You can also see that the sorted array is printed in the console, with values displayed from smallest to largest. The method we imported from the Arrays library handled the sorting.

Let's also take a look at another method from Arrays - fill.

java

Main

copy
12345678910111213141516171819
package com.example; // do not modify the code below this comment // importing Arrays library into our code import java.util.Arrays; public class Main { public static void main(String[] args) { // creating an int array with some different values int[] array = {1, 5, 6, 2, 0, -4, 2}; // using Arrays library to fill the array with the value "1" Arrays.fill(array, 1); // printing each element from the filled array to the console for (int element : array) { System.out.print(element + " "); } } }

We have the same integer array, but we're not sorting it this time. Instead, we're replacing each element of the array with a specified value. Notice that we first specify the array we want to fill in the parentheses, and then we provide the value with which we want to fill the array.

After all the operations, you can see that the array displayed on the screen consists of all elements equal to 1.

Tarea

  1. Import the Arrays library.
  2. Sort the given array of char elements.
  3. Display the sorted array on the screen.

Switch to desktopCambia al escritorio para practicar en el mundo realContinúe desde donde se encuentra utilizando una de las siguientes opciones
Sección 1. Capítulo 5
Switch to desktopCambia al escritorio para practicar en el mundo realContinúe desde donde se encuentra utilizando una de las siguientes opciones
some-alt