+ 4
What is the difference between calling 'super' and calling 'super()' in Ruby?
1 Antwort
+ 6
When you call super with no arguments, Ruby sends a message to the parent of the current object, asking it to invoke a method with the same name as where you called super from, along with the arguments that were passed to that method.
While when we use super(), it sends no arguments to the parent.