HarmonyOS ArkTS Void类型
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
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