HarmonyOS ArkTS Void类型

发布于 1周前 作者 itying888 来自 分享

HarmonyOS ArkTS Void类型主要用于函数,当一个函数没有返回值时,你通常会见到其返回值类型是 void。

function test(): void {
   console.log('This is function is void');
}

更多关于HarmonyOS ArkTS Void类型的实战系列教程也可以访问 https://www.itying.com/category-93-b0.html

回到顶部