由买买提看人间百态

topics

全部话题 - 话题: thing1
(共0页)
j*********r
发帖数: 24733
1
哈哈,thing1 & thing2,尼玛。
b******e
发帖数: 432
2
来自主题: JobHunting版 - 请教个Perl的问题!!多谢啦!
What is the difference between the two following declarations?
my $thing1 = [ 1, 2, 3 ];
my @thing2 = ( 1, 2, 3 );
S**I
发帖数: 15689
3
来自主题: JobHunting版 - 请教个Perl的问题!!多谢啦!
前一个是array,后一个是list

What is the difference between the two following declarations?
my $thing1 = [ 1, 2, 3 ];
my @thing2 = ( 1, 2, 3 );
b******e
发帖数: 432
4
来自主题: JobHunting版 - 请教个Perl的问题!!多谢啦!
The first one: $thing1 = the reference to the array (1,2,3)
The second one: @thins2 is the array (1,2,3)
a**y
发帖数: 6501
5
来自主题: Parenting版 - the cutest Halloween costumes I saw
来我们家要糖的一家,
双胞胎
爸爸穿cat in the hat, 俩儿子带着蓝色的火焰假发, thing1 and thing2, 可爱
x**n
发帖数: 12542
6
来自主题: WashingtonDC版 - 等香艳的IED和Neil美女的亲密照
mom of thing1/thing2
b******e
发帖数: 432
7
来自主题: CS版 - 请教一个关于Perl的问题
What is the difference between the two following declarations?
my $thing1 = [ 1, 2, 3 ];
my @thing2 = ( 1, 2, 3 );
DK
发帖数: 194
8
来自主题: CS版 - 请教一个关于Perl的问题
The first one: $thing1 = the reference to the array (1,2,3)
The second one: @thins2 is the array (1,2,3)
(共0页)