2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 3 years have passed since last update.

[Ruby]メソッドの引数の値渡し、参照渡しと破壊的メソッドについて

Last updated at Posted at 2021-06-05

はじめに

Rubyを勉強していて、値渡しと参照渡し、破壊的メソッドの関係について学んだのでメモ

学んだこと

以下のようなコードを書いていて想定していた動きと違ったので深掘りしてみた。

def remove_same_word(array , element)
    array.delete(element)
    array
end

words = ['hoge','hige']
word = 'hige'

p words 
p remove_same_word(words , word)
p words
=> ["hoge", "hige"]  # 元のwords
=> ["hoge"]          # remove_same_wordの実行結果
=> ["hoge"]          # remove_same_word後のwords

上記は第一引数の配列wordsから第二引数のwordと同じ名前の要素を取り除きその結果を変えすメソッドです。
メソッドに渡したwordsの値が変わらないと思っていたのですがそうではありませんでした。
なぜこうなったか、結論からいうと破壊的メソッドを使っていたからでした。

私の今までの認識では破壊的メソッドは「!」がつくと勘違いしており、引数に入れたオブジェクトの値は変わらないと思っていました。
今回の例で言うとremove_same_wordメソッドの中で使っているremoveがそれにあたり元の値までもが変更されていました。

参考

2
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
2
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?