ruby新手学习笔记1-01

上一篇 / 下一篇  2009-10-27 16:38:32

class Dns

def oo

puts "hello!"

end

end

pp=Dns.new

pp.oo

 

 

class Dns

def self.oo

puts "hello!"

end end

pp=Dns.new

pp.oo

 

class Dns

def self.oo

puts "hello!"

end end

Dns.oo

 


TAG:

 

评分:0

我来说两句

Open Toolbar