ฉันอ้างถึงการทดสอบนี้ใน about_symbols.rb ใน Ruby Koans https://github.com/edgecase/ruby_koans/blob/master/src/about_symbols.rb#L26
def test_method_names_become_symbols
symbols_as_strings = Symbol.all_symbols.map { |x| x.to_s }
assert_equal true, symbols_as_strings.include?("test_method_names_become_symbols")
end
# THINK ABOUT IT:
#
# Why do we convert the list of symbols to strings and then compare
# against the string value rather than against symbols?
ทำไมเราต้องแปลงรายการนั้นเป็นสตริงก่อน?
Symbol.all_symbols
ให้กับตัวแปรจากนั้นทดสอบการรวม สัญลักษณ์จะเร็วกว่าในการเปรียบเทียบและคุณหลีกเลี่ยงการแปลงสัญลักษณ์นับพันเป็นสตริง