本月博客排行
-
第1名
龙儿筝 -
第2名
lerf -
第3名
fantaxy025025 - johnsmith9th
- xiangjie88
- zysnba
年度博客排行
-
第1名
青否云后端云 -
第2名
宏天软件 -
第3名
gashero - wy_19921005
- vipbooks
- benladeng5225
- e_e
- wallimn
- javashop
- ranbuijj
- fantaxy025025
- jickcai
- gengyun12
- zw7534313
- qepwqnp
- 解宜然
- ssydxa219
- zysnba
- sam123456gz
- sichunli_030
- arpenker
- tanling8334
- gaojingsong
- kaizi1992
- xpenxpen
- 龙儿筝
- jh108020
- wiseboyloves
- ganxueyun
- xyuma
- xiangjie88
- wangchen.ily
- Jameslyy
- luxurioust
- lemonhandsome
- mengjichen
- jbosscn
- zxq_2017
- lzyfn123
- nychen2000
- forestqqqq
- wjianwei666
- ajinn
- zhanjia
- Xeden
- hanbaohong
- java-007
- 喧嚣求静
- mwhgJava
- kingwell.leng
最新文章列表
(转载收藏)ruby元编程 那些书里没有的知识 define_method
转自:http://www.cnblogs.com/IAmBetter/archive/2013/03/16/2963696.html
你有多少种方式创建一个方法?大多数人想到的可能是def 关键字
#普通方法
def tele_you
【ruby】ruby 动态方法总结
本文对ruby动态方法特性进行探讨。
结合以下例子:
#dynamic methods
class Dynamic
def a
puts "this is method a"
end
def b(bob)
puts "this ...
ruby元编程 那些书里没有的知识 define_method
你有多少种方式创建一个方法?大多数人想到的可能是def 关键字
#普通方法
def tele_you
puts "I am Anleb"
end
#定义单件方法
n="Anleb"
def n.tell_you
puts "I am #{self}"
end
n.tell_you
#define ...