作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
{d => "e"}}是产生输出-6ren">
我需要处理哈希值取决于值类型。这是有问题的代码:
I32 keys = hv_iterinit(hash);
for (I32 i = 0; i < keys; i++)
{
char *key = NULL;
I32 key_length = 0;
SV *value = hv_iternextsv(hash, &key, &key_length);
// SvROK(value);
if (SvTYPE(SvRV(value)) < SVt_PVAV)
{
// handle scalar
printf("key %s has scalar value\n", key);
}
else if (SvTYPE(SvRV(value)) == SVt_PVAV)
{
// handle array
printf("key %s has array value\n", key);
}
else if (SvTYPE(SvRV(value)) == SVt_PVHV)
{
// handle hash
printf("key %s has hash value\n", key);
}
}
{a => "b", c => {d => "e"}}
是产生输出:
key c has hash value
key d has scalar value
hv_iternextsv()
返回引用?或者有时它返回标量? a
的标量值输出. hv_iternextsv()
的结果.我在想这总是一个引用。以下是工作代码的样子:
I32 keys = hv_iterinit(hash);
for (I32 i = 0; i < keys; i++)
{
char *key = NULL;
I32 key_length = 0;
SV *value = hv_iternextsv(hash, &key, &key_length);
if (!SvROK(value))
{
// handle scalar
}
else
{
if (SvTYPE(SvRV(value)) == SVt_PVAV)
{
// handle array
}
else if (SvTYPE(SvRV(value)) == SVt_PVHV)
{
// handle hash
}
}
}
最佳答案
Do we always have reference returned from
hv_iternextsv()
or sometimes it returns scalar?
$h{x} = [];
),但不一定是(
$h{y} = 123;
)。
Why I don't see scalar value output for key a.
d
的键。 .对于您提供的哈希,您的代码输出以下内容:
key a has scalar value
key c has hash value
SvTYPE(SvRV(value))
当
value
不是引用???这是没有意义的!固定代码如下:
use strict;
use warnings;
use Inline C => <<'__EOI__';
void print_keys(HV* hash) {
char *key;
I32 key_length;
SV *value;
hv_iterinit(hash);
while (value = hv_iternextsv(hash, &key, &key_length)) {
if (SvROK(value)) {
SV * const referenced = SvRV(value);
if (SvTYPE(referenced) == SVt_PVAV) {
printf("The value at key %s is reference to an array\n", key);
}
else if (SvTYPE(referenced) == SVt_PVHV) {
printf("The value at key %s is a reference to a hash\n", key);
}
else {
printf("The value at key %s is a reference\n", key);
}
} else {
printf("The value at key %s is not a reference\n", key);
}
}
}
__EOI__
print_keys({a => "b", c => {d => "e"}});
The value at key a is not a reference
The value at key c is a reference to a hash
关于perl - 如何在 Perl XS 中处理哈希值类型,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31072367/
我是一名优秀的程序员,十分优秀!