Dashy's Blog

Hash.new 可接受一个参数指明元素的默认值,即当键不存在时返回的值

1
2
3
4
5
6
7
8
>> h = Hash.new
=> {}
>> h[:foo] # 试图获取不存在的键 :foo 对应的值
=> nil
>> h = Hash.new(0) # 让不存在的键返回 0 而不是 nil
=> {}
>> h[:foo]
=> 0

在类中调用方法或访问属性时可以不用 self.(赋值例外)

Confuse

不理解 yield

pbcopy ~/.ssh/id_rsa.pub

.card-img-overlay
.d-flex.pt-5.pb-3.px-2
.card-text.text-white.pl-2= post.summary

tag颜色,动态加载,搜索,排行。
react,flutter。

 评论