2

我得到如下:

 use constant ABC => ('one', 'two', 'three');

我想将此常量传递给variations_with_repetition(\@data, $k)子程序作为@data.

我该怎么做?

4

1 回答 1

7

使用[]运算符将​​列表转换为 ARRAY 引用:

variations_with_repetition( [ABC] , $k );
于 2010-03-17T22:15:50.157 回答