由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - ruby的语法糖有时很无聊
相关主题
从vert.x的例子看脚本How to see the content of a library file
groovy整个就是一个better python时间格式转换的问题
Ruby这么好的语言,衰落的也太可惜了。GCC 居然允许变量长度的向量
windows下的Gcc界面叫什么来?a simple question regarding string copy in C
GCC Benchmarks, AMD64 and i686 (zz)发个初级面试题
__FUNCTION__ 是怎么回事呀?GCC对单行的表达式的长度有限制么?
??? i m confused这是怎么回事?
在Sun Solaris gcc下,怎样知道一个函数在哪个lib里?ask for help about AMD cluster
相关话题的讨论汇总
话题: wtf话题: 变成话题: python话题: ruby话题: linux2
进入Programming版参与讨论
1 (共1页)
Y**G
发帖数: 1089
1
[1, 2, 3]*3 变成 [1, 2, 3, 1, 2, 3, 1, 2, 3]
WTF
Y**G
发帖数: 1089
2
还有类的方法可以在运行的时候动态的定义,可以让你欲哭无泪。

【在 Y**G 的大作中提到】
: [1, 2, 3]*3 变成 [1, 2, 3, 1, 2, 3, 1, 2, 3]
: WTF

t**r
发帖数: 3428
3
what the heck..
python is the same regarding this.
Python 2.7.6 (default, Mar 22 2014, 22:59:56)
[GCC 4.8.2] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> [1,2,3]*3
[1, 2, 3, 1, 2, 3, 1, 2, 3]
>>>

【在 Y**G 的大作中提到】
: [1, 2, 3]*3 变成 [1, 2, 3, 1, 2, 3, 1, 2, 3]
: WTF

1 (共1页)
进入Programming版参与讨论
相关主题
ask for help about AMD clusterGCC Benchmarks, AMD64 and i686 (zz)
A question about Debugging__FUNCTION__ 是怎么回事呀?
Do the two statements cost the same amount of time???? i m confused
[合集] 大拿们,问一个redhat linux下C编程 make error 139的问在Sun Solaris gcc下,怎样知道一个函数在哪个lib里?
从vert.x的例子看脚本How to see the content of a library file
groovy整个就是一个better python时间格式转换的问题
Ruby这么好的语言,衰落的也太可惜了。GCC 居然允许变量长度的向量
windows下的Gcc界面叫什么来?a simple question regarding string copy in C
相关话题的讨论汇总
话题: wtf话题: 变成话题: python话题: ruby话题: linux2