b******e 发帖数: 432 | 1 What is the difference between the two following declarations?
my $thing1 = [ 1, 2, 3 ];
my @thing2 = ( 1, 2, 3 ); | N**D 发帖数: 10322 | 2 200 伪币
【在 b******e 的大作中提到】 : What is the difference between the two following declarations? : my $thing1 = [ 1, 2, 3 ]; : my @thing2 = ( 1, 2, 3 );
| DK 发帖数: 194 | 3 The first one: $thing1 = the reference to the array (1,2,3)
The second one: @thins2 is the array (1,2,3) | b******e 发帖数: 432 | 4 多谢多谢啦!
【在 DK 的大作中提到】 : The first one: $thing1 = the reference to the array (1,2,3) : The second one: @thins2 is the array (1,2,3)
| N**D 发帖数: 10322 | 5 老中就是讨厌,没事抢别人饭碗
【在 DK 的大作中提到】 : The first one: $thing1 = the reference to the array (1,2,3) : The second one: @thins2 is the array (1,2,3)
| P********t 发帖数: 141 | 6 这个不是抢, 是砸.
【在 N**D 的大作中提到】 : 老中就是讨厌,没事抢别人饭碗
| DK 发帖数: 194 | | b******e 发帖数: 432 | 8 大侠终于又现身了。。。不知道对我的第二个求教有什么建议没?多谢啦!!!!
【在 DK 的大作中提到】 : lol
|
|