class String def coerce(other) [other.to_s, self] end def +(other) "#{self}#{other}" end end
class String
def coerce(other)
[other.to_s, self]
end
def +(other)
"#{self}#{other}"
end
end
群里回答过了,这里姑且也发上来骗分。
当然,强烈不建议用上面这个操作。用 "#{expr}" 这种内嵌表达式或者 to_s 本身就是很好的做法。
|