Array#+() es un método de clase Array que realiza conjuntos de operaciones de concatenación mediante la combinación de dos arrays en una tercera array.
Sintaxis: Array.+()
Parámetro: Arreglos para realizar la operación de concatenación.
Retorno: Nuevas arrays combinando dos arrays.
Ejemplo 1 :
# Ruby code for +() method # showing concatenate operation # declaring array a = [18, 22, 33, 4, 5, 6] # declaring array b = [5, 4, 22, 1, 88, 9] # declaring array c = [18, 22, 33, 40, 50, 6] # combining arrays puts "combination of a and b : #{a + b}\n\n" # combining arrays puts "combination of a and c : #{a + c}\n\n" # combining arrays puts "combination of b and c : #{b + c}\n\n"
Producción :
combination of a and b : [18, 22, 33, 4, 5, 6, 5, 4, 22, 1, 88, 9] combination of a and c : [18, 22, 33, 4, 5, 6, 18, 22, 33, 40, 50, 6] combination of b and c : [5, 4, 22, 1, 88, 9, 18, 22, 33, 40, 50, 6]
Ejemplo #2:
# Ruby code for +() method # showing concatenate operation # declaring array a = ["abc", "xyz", "dog"] # declaring array b = ["cow", "cat", "dog"] # declaring array c = ["cat", "1", "dog"] # combining arrays puts "combination of a and b : #{a + b}\n\n" # combining arrays puts "combination of a and c : #{a + c}\n\n" # combining arrays puts "combination of b and c : #{b + c}\n\n"
Producción :
combination of a and b : ["abc", "xyz", "dog", "cow", "cat", "dog"] combination of a and c : ["abc", "xyz", "dog", "cat", "1", "dog"] combination of b and c : ["cow", "cat", "dog", "cat", "1", "dog"]
Publicación traducida automáticamente
Artículo escrito por mayank5326 y traducido por Barcelona Geeks. The original can be accessed here. Licence: CCBY-SA