gpt4 book ai didi

c++ - 如果整数初始化为空,则给整数一个默认值

转载 作者:行者123 更新时间:2023-11-30 01:41:20 24 4
gpt4 key购买 nike

我有这个(它是一个 Node.js 插件)

void Method(const v8::FunctionCallbackInfo<v8::Value>& args) {

int count = args[2]->ToNumber()->NumberValue();
int priority = args[3]->ToNumber()->NumberValue();
int priority_search_cap = args[4]->ToNumber()->NumberValue();

cout << " count => " << count << endl;
cout << " priority => " << priority << endl;
cout << " priority_search_cap => " << priority_search_cap << endl;

}

我退出的是:

 count => -2147483648
priority => -2147483648
priority_search_cap => -2147483648

我想做的是给这些变量默认值,以防没有传递任何值来正确初始化它们? (意思是,args[2]、args[3]、args[4] 是未定义的。)

我怎样才能给这些整数默认值?

最佳答案

Value 类型有一个很好的 IsUndefined() 方法来检查这个

在未定义值的情况下,您可以使用三元表达式将值设置为 0:

int count = args[2]->IsUndefined() ? 0 : args[2]->ToNumber()->NumberValue();
int priority = args[3]->IsUndefined() ? 0 : args[3]->ToNumber()->NumberValue();
int priority_search_cap = args[4]->IsUndefined() ? 0 : args[4]->ToNumber()->NumberValue();

在此处检查 Value API:http://bespin.cz/~ondras/html/classv8_1_1Value.html#aea287b745656baa8a12a2ae1d69744b6

关于c++ - 如果整数初始化为空,则给整数一个默认值,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/41436698/

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