为什么我不能打印常量字符串的长度?这是我的代码:
#!/usr/bin/ruby
Name = "Edgar Wallace"
name = "123456"
puts "Hello, my name is " + Name
puts "My name has " + Name.to_s.length + " characters."
我已经阅读了“如何确定 Ruby 中 Fixnum 的长度? ”,但不幸的是它对我没有帮助。
尝试后,抛出此错误:
./hello.rb:7:in `+': can't convert Fixnum into String (TypeError)
from ./hello.rb:7:in `<main>'