dart里面同有些语言一样存在一个入口函数main
main() {
print("hellow, word");
}
运行代码会发现再输出hellow, word
image.png
但其实这只是函数的简写,那我们来看下完整函数的写法
// 完整main函数
// 函数返回值 函数名称 (参数列表) {
// 函数体
// }
void main(List<String> arg) {
print("hellow, word");
print(arg);
}
void表示该函数没有返回值,
String表示参数类型,
List可以简单理解为js的数组或者ts里面的泛型,
arg表示参数,也可以理解为List的一个别名。
传参需要再终端运行代码时传参
image.png
值得一提的时dart每行语句必须使用分号结尾,很多语言并不需要分号,比如Swift、JavaScript。
网友评论