1
我在Ruby中爲String類添加了一個新方法,如何獲取該類的值?在String類中獲取字符串值
例如爲:
class String
def myMethodName(arguments)
# here I want the string value
end
end
puts "Lennie".myMethodName()
# this should return "Lennie" or whatever the value of the string is.
感謝
首先,你不需要在Ruby中使用空的參數括號。他們是可選的。其次,方法名稱通常被強調,而不是駱駝式的。 – 2009-03-03 03:57:30