gpt4 book ai didi

相当于 elvis “?: return” 运算符的 typescript

转载 作者:行者123 更新时间:2023-12-04 08:51:23 25 4
gpt4 key购买 nike

如果 nextbitmap() 的结果为 null,则 Kotlin 中的以下代码从父函数返回

 val bitmap = nextbitmap() ?: return
// something the relies on bitmap not being null
这种运算符的 Typescript 等价物是什么?

最佳答案

没有这样的操作符,而且return永远不能成为表达式的一部分。在 TypeScript 中,您必须使用单独的 if声明:

const bitmap = nextbitmap();
if (!bitmap) return;
// something the relies on bitmap not being null
(或在条件中使用 bitmap != null,如果 bitmap 具有原始类型)

关于相当于 elvis “?: return” 运算符的 typescript ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64083222/

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