본문 바로가기
Web development/Ruby

[Ruby] 함수를 동적으로 실행하기

by 자몬다 2019. 6. 18.

동적으로 함수를 실행할 필요가 있을때, send를 사용할 수 있다.

 

형태

클래스명.new.send(실행할 함수명)

ex) class User def find -> User.new.send(:find)

 

 

'Web development > Ruby' 카테고리의 다른 글

[Ruby] Class와 Module의 차이점  (0) 2019.06.18
[Ruby] ||= (or equals)란 무엇인가?  (0) 2019.06.18
[Ruby] 인스턴스 변수  (0) 2019.06.18
[Ruby] 생성자(Constructor)  (0) 2019.06.18
[Ruby] self란?  (0) 2019.06.18

댓글