Нещодавно я знайшов шлях до цього. Я хотів створити метод у класі масиву з необов'язковим параметром, щоб зберегти або відкинути елементи в масиві.
Я моделював це шляхом передачі масиву як параметра, а потім перевірки, чи значення цього індексу було нульовим чи ні.
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
Спробуйте наш метод класу з різними параметрами:
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)
вихід: ["1", "2", "a", "b", "c"]
Гаразд, круто, що працює за планом. Тепер перевіримо і подивимося, що станеться, якщо ми не перейдемо до третього параметра параметра (1) у масиві.
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)
вихід: ["a", "b", "c"]
Як бачимо, третій варіант масиву було видалено, таким чином ініціюючи інший розділ у методі та видаливши всі значення ASCII, які не в нашому діапазоні (32-126)
Крім того, ми могли б видати значення як нульове значення в параметрах. Що буде схоже на наступний блок коду:
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
справжнім і перейдетеfalse
,scope ||= true
не вийде. Він оцінює те саме, щоnil
і встановить йогоtrue