请教各位高手,IDE提示警告

请教各位高手,IDE提示警告

class Apple
 @@color = "red" # 类变量
 @size1 = name # 实例变量
 @size2 = "name"
#  以下三行代码均被提示“ (...) interpreted as php?name=group" onclick="tagshow(event)" class="t_tag">grouped expression ”
 puts ("@@color is " + @@color)
 puts ("@size1 is " + @size1)
 puts ("@size2 is " + @size2)
#  请教一下各位高手,这是怎么回事?
 def info
  puts "The color of apple is " + @@color
 end
end
Apple.new.info
你的put和()之间有空格,ruby把后面当成了一个小括号括起来的组表达式来执行了。实际上对你是没有影响的。但是一定要记住,以后方法调用时,方法名和( )之间不要有空格
明白了,谢谢
学习到咯......