typescript 中 as number 类型转换的本质
在 TypeScript 中,as number 类型转换常用于强转一个值类型为数字。不过,与预期不同的是,该类型转换不会在运行时实际转换值。
考虑以下示例:
const props = defineProps();getDictGroup(props.group);export const getDictGroup = async (sid: number) => { const dict = await getDict(); console.info(typeof sid); // "string" sid = sid as number; console.info(typeof sid); // "number" console.info(typeof (sid as number)); // "number"};
登录后复制
如你所见,即使在多次声明 sid 为数字类型,打印出来的类型仍然是字符串。这是因为 as number 欺骗了编译器,而不会在运行时执行真正的类型转换。
正确的 TypeScript 类型转换应使用 Number() 或 parseInt() 函数:
const props = defineProps();getDictGroup(props.group);export const getDictGroup = async (sid: number) => { const dict = await getDict(); console.info(typeof sid); // "string" // 使用 Number 转换 sid = Number(sid); // 使用 parseInt 转换 sid = parseInt(sid); console.info(typeof sid); // "number"};
登录后复制
以上就是TypeScript 中 as number 真的会转换类型吗?的详细内容,更多请关注【创想鸟】其它相关文章!
版权声明:本文内容由互联网用户自发贡献,该文观点仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容, 请发送邮件至253000106@qq.com举报,一经查实,本站将立刻删除。
发布者:PHP中文网,转转请注明出处:https://www.chuangxiangniao.com/p/2799624.html