Recentemente ho trovato un modo per aggirare questo problema. Volevo creare un metodo nella classe array con un parametro opzionale, per mantenere o scartare gli elementi nell'array.
Il modo in cui l'ho simulato è stato passando un array come parametro e quindi controllando se il valore in quell'indice era nullo o meno.
class Array
def ascii_to_text(params)
param_len = params.length
if param_len > 3 or param_len < 2 then raise "Invalid number of arguments #{param_len} for 2 || 3." end
bottom = params[0]
top = params[1]
keep = params[2]
if keep.nil? == false
if keep == 1
self.map{|x| if x >= bottom and x <= top then x = x.chr else x = x.to_s end}
else
raise "Invalid option #{keep} at argument position 3 in #{p params}, must be 1 or nil"
end
else
self.map{|x| if x >= bottom and x <= top then x = x.chr end}.compact
end
end
end
Provando il nostro metodo di classe con diversi parametri:
array = [1, 2, 97, 98, 99]
p array.ascii_to_text([32, 126, 1]) # Convert all ASCII values of 32-126 to their chr value otherwise keep it the same (That's what the optional 1 is for)
produzione: ["1", "2", "a", "b", "c"]
Va bene, va bene, funziona come previsto. Ora controlliamo e vediamo cosa succede se non passiamo la terza opzione parametro (1) nell'array.
array = [1, 2, 97, 98, 99]
p array.ascii_to_text([32, 126]) # Convert all ASCII values of 32-126 to their chr value else remove it (1 isn't a parameter option)
produzione: ["a", "b", "c"]
Come puoi vedere, la terza opzione nell'array è stata rimossa, iniziando così una sezione diversa nel metodo e rimuovendo tutti i valori ASCII che non sono nel nostro intervallo (32-126)
In alternativa, avremmo potuto emettere il valore come nil nei parametri. Che sarebbe simile al seguente blocco di codice:
def ascii_to_text(top, bottom, keep = nil)
if keep.nil?
self.map{|x| if x >= bottom and x <= top then x = x.chr end}.compact
else
self.map{|x| if x >= bottom and x <= top then x = x.chr else x = x.to_s end}
end
scope
vero e passifalse
,scope ||= true
non funzionerà. Valuta lo stesso dinil
e lo imposterà sutrue