我現在的問題是基於我遇到的有關CSV文件的問題,但它也更一般。查找Perl值是否已初始化的命令
我正在尋找使用類似於Java/Groovy/Gosu中的null問號來確定數組索引是否已被初始化。
我有類似:
for (my i = 0; i < @engVals or i < @frenchVals; i++) {
$csv->print($file, [ $engVals[i] ?: "", , $frenchVals[i] ?: "" ]);
# Where Elvis ops ensure that the array element at i is initialized, and if not stores blank in the CSV
}
你想知道是否有[[定義]](http://perldoc.perl.org/functions/defined.html)? –