gpt4 book ai didi

perl - 为什么 undef 变成空字符串?

转载 作者:行者123 更新时间:2023-12-01 00:54:19 25 4
gpt4 key购买 nike

use strict;
use warnings;
use Data::Dumper;

my %h;
my $undef = undef;
$h{''}='test2';
$h{$undef} = 'test';

print Dumper (\%h);

创建以下输出:
$VAR1 = {
'' => 'test'
};

为什么会这样?
我有 Perl 5.12.3。

谢谢你的时间。

最佳答案

所有哈希键都是字符串。用作哈希键的非字符串值被强制为字符串,并且 undef变成 ''在这种情况下。

关于perl - 为什么 undef 变成空字符串?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11228975/

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