gpt4 book ai didi

perl - 有人可以解释这里的实际错误是什么以及如何解决吗?

转载 作者:行者123 更新时间:2023-12-02 07:06:03 25 4
gpt4 key购买 nike

我正在尝试在嵌套的 for/foreach 循环中使用散列。 see Source

strict 表示

Global symbol "$mapping" requires explicit package name at ./test2.pl line 39. 
Execution of ./test2.pl aborted due to compilation errors.

没有strict

Use of uninitialized value $mapping in hash element at ./test2.pl line 46, <$fh> line 8. 
Use of uninitialized value in concatenation (.) or string at ./test2.pl line 46, <$fh> line 8.

print $hashref->{$mapping} 在输出中为空。

错误是什么?

最佳答案

您正在尝试使用一个不存在的名为 $mapping 的变量。有一个名为 %mapping 的元素,它有一个名为 $mapping{$outlook} 的元素,但是如果 $mapping 存在的话,它将是一个不相关的标量,不是哈希的一部分。

看起来你应该使用 $hashref->{$mapping{$outlook}}

关于perl - 有人可以解释这里的实际错误是什么以及如何解决吗?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11705565/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com