Project1

标题: 疑问 [打印本页]

作者: 萌小妖    时间: 2013-12-17 09:21
标题: 疑问
class People
  def initialize( name, age )
    @name=name ;@age=age
    @motherland='china'
  end
  def talk
    p "my name is#{@name}, age is#{@age},motherlandis #{@motherland}"
  end
  end
  p People.new('zhangshan','12').talk   
为什么显示完之后会出现一个nil
作者: MustDante    时间: 2013-12-17 09:24
骚年第四次了
果然是不长记性啊
@木下凌枫
作者: fux2    时间: 2013-12-17 14:19
p 当然返回nil
  1. def talk
  2.     return "my name is#{@name}, age is#{@age},motherlandis #{@motherland}"
  3.   end
复制代码
这样才对




欢迎光临 Project1 (https://rpg.blue/) Powered by Discuz! X3.1