那是因为"#{a}"
调用#to_s
表达式的方法。
所以:
puts a # equivalent to, well, puts a
puts "#{a}" # equivalent to the next line
puts a.to_s
更新:
详细地说,puts
最终会调用#to_s
,但它会在实际输出之前添加逻辑,包括对数组的特殊处理。只是碰巧Array#to_s
不使用相同的算法。(请参阅puts
此处的文档。)这正是它的作用......
rb_io_puts(int argc, VALUE *argv, VALUE out)
{
int i;
VALUE line;
/* if no argument given, print newline. */
if (argc == 0) {
rb_io_write(out, rb_default_rs);
return Qnil;
}
for (i=0; i<argc; i++) {
if (TYPE(argv[i]) == T_STRING) {
line = argv[i];
goto string;
}
line = rb_check_array_type(argv[i]);
if (!NIL_P(line)) {
rb_exec_recursive(io_puts_ary, line, out);
continue;
}
line = rb_obj_as_string(argv[i]);
string:
rb_io_write(out, line);
if (RSTRING_LEN(line) == 0 ||
!str_end_with_asciichar(line, '\n')) {
rb_io_write(out, rb_default_rs);
}
}
return Qnil;
}