Programa Java para usar la sobrecarga de métodos para imprimir diferentes tipos de arrays

En Java, la sobrecarga de métodos se puede definir como la clase que contiene varios métodos con el mismo nombre, pero la lista de parámetros, el tipo de parámetros o el orden de los parámetros de los métodos no debe ser el mismo. Podemos imprimir diferentes tipos de arrays utilizando la sobrecarga de métodos en Java asegurándonos de que el método contenga diferentes parámetros con el mismo nombre del método.

Implementemos un programa con el método printArray() sobrecargado tres veces para imprimir diferentes tipos de array. Y cada vez que la función tiene diferentes parámetros. En el método principal, proporcione las entradas requeridas para cada array y luego llamando a sus respectivos métodos, la array impresa en la pantalla.

Implementación:

Java

// Java Program to Use Method Overloading
// for Printing Different Types of Array
class methodOverloadingDemo {
 
    // creating a method for printing integer
    // array with integer parameter
    public static void printArray(Integer[] arr)
    {
        System.out.println("\nThe Integer array is: ");
 
        // for loop for printing the elements of array
        for (Integer i : arr)
            System.out.print(i + " ");
        System.out.println();
    }
 
    // overloading the above created method with different
    // parameter method contains a character parameter
    public static void printArray(Character[] arr)
    {
        System.out.println("\nThe Character array is: ");
 
        // for loop for printing the elements of array
        for (Character i : arr)
            System.out.print(i + " ");
        System.out.println();
    }
 
    // now the parameter for the overloaded method is String
    public static void printArray(String[] arr)
    {
        System.out.println("\nThe String array is: ");
 
        // for loop for printing the elements of array
        for (String i : arr)
            System.out.print(i + " ");
        System.out.println();
    }
 
    // now the parameter for the overloaded method is double
    public static void printArray(Double[] arr)
    {
        System.out.println("\nThe Double array is: ");
 
        // for loop for printing the elements of array
        for (Double i : arr)
            System.out.print(i + " ");
    }
 
    // main function
    public static void main(String args[])
    {
 
        // calling the parameters of all the
        // methods and taking the inputs
        Integer[] iarr = { 2, 4, 6, 6, 8 };
        Character[] carr = { 'H', 'E', 'L', 'L', 'O' };
        String[] sarr
            = { "Ram", "Nidhi", "John", "Raju", "Sara" };
        Double[] darr
            = { 10.0123, 89.123, 65.132, 78.321, 1.798 };
 
        // calling the methods and printing the arrays
        printArray(iarr);
        printArray(carr);
        printArray(sarr);
        printArray(darr);
    }
}
Producción

The Integer array is: 
2 4 6 6 8 

The Character array is: 
H E L L O 

The String array is: 
Ram Nidhi John Raju Sara 

The Double array is: 
10.0123 89.123 65.132 78.321 1.798 

Complejidad de tiempo: O(N), donde N es el tamaño de la array.

Publicación traducida automáticamente

Artículo escrito por neelutiwari y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *