摘要:
//*** Dart 面向对象编程语法 ***/ //类的很多语言和JAVA类似 //单一类继承、可继承多接口 class Point{ //定义属性 double x=0.0; double y=0.0; final String id; static const CLASS_NAME = "cl 阅读全文
摘要:
//*** Dart 基础编程 ***/ /* 一切变量皆为对象变量,未初始化的值默认为null 内置数据类型: Numbers (int, double) Strings (String) Booleans (bool) Lists (也被称为 arrays) Sets (Set) Maps (M 阅读全文