Google V8 JavaScript 引擎 - 如何将值设置为 null?
使用V8引擎,如何将值设置为null
?基本上我想从 C++ 插件返回一个变量到 JavaScript,并且在某些条件下该变量需要设置为 null
。
Using the V8 engine, how do I set a value to null
? Basically I want to return a variable from a C++ addon to JavaScript, and the variable needs to be set to null
under certain conditions.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以通过
v8::Null< 显式返回
null
/code>:
此外,如果声明了
Value
变量,它会自动分配给undefined
。例如,以下代码将undefined
返回给 JavaScript:You can explicitly return
null
viav8::Null
:Also, it turns out that if a
Value
variable is declared, it is automatically assigned toundefined
. For example, the following returnsundefined
back to JavaScript: