摸鱼摸呀摸呀摸~最近真的有点闲,不要浪费时间,继续学习,晚上再过一遍视频、
发现自己疯狂掉粉🥲
类成员
在开发中, 我们有时候也需要定义类级别的成员和方法。在Dart中我们使用static关键字来定义:
main(List args) {
var stu = Student();
stu.name = ‘why’;
stu.sno = 110;
stu.study();
Student.time = ‘早上8点’;
// stu.time = ‘早上9点’; 错误做法, 实例对象不能访问类成员
Student.attendClass();
// stu.attendClass(); 错误做法, 实现对象补鞥呢访问类方法
}
class Student {
String name;
int sno;
static String time;
study() {
print(‘$name在学习’);
}
static attendClass() {
print(‘去上课’);
}
}
泛型
这个比较简单,学过ts就会了,简单的地方我就直接复制粘贴老师的了
List使用时的泛型写法
// 创建List的方式
var names1 = [‘why’, ‘kobe’, ‘james’, 111];
print(names1.runtimeType); // List
声明:文中观点不代表本站立场。本文传送门:https://eyangzhen.com/423639.html