Flutter ☞ 常量

常量

只能被定义一次,并且不可修改的值叫做常量。

Flutter 中有两种常量修饰方法

  • final
  • const

相同点

类型声明可以省略

kotlin 复制代码
final String a = '123';
final a = '123';

const String a = '123';
const a = '123';

初始化后不能再赋值

kotlin 复制代码
final a = '123';
a = 'abc'; // 错误

const a = '123';
a = 'abc'; // 错误

不能和 var 同时使用

kotlin 复制代码
final var a = '123'; // 错误
const var a = '123'; // 错误

不同点

确定的值

kotlin 复制代码
final dt = DateTime.now();
const dt = const DateTime.now();
  • final 修饰时间可以是即时时间。即当前值会根据运行时进行变化
  • const 修饰时间必需为确定值,即当前值不会根据运行时变化。

不可变,可传递

kotlin 复制代码
final List ls = [11, 22, 33];
ls[1] = 44;

const List ls = [11, 22, 33];
ls[1] = 44; // 报错
  • final 修饰数组集合时,数组内的值可修改
  • const 修饰数组集合时,数组内的值不可修改

内存中重复创建

kotlin 复制代码
final a1 = [11, 22];
final a2 = [11, 22];
print(identical(a1, a2)); // false

const a1 = [11, 22];
const a2 = [11, 22];
print(identical(a1, a2)); // true
  • identical 通过比较两个引用的是否是同一个对象判断是否相等

使用场景

final 成员变量初始

kotlin 复制代码
class PlaceholdWidget extends StatelessWidget {
	final String? assetImagePath;
	
	const PlaceholdWidget({
		Key? key,
		this.assetImagePath,
	}) : super(key: key);

	@override
	Widget build(BuildContext context) {
		...
	}
}

const 全局参数

kotlin 复制代码
// 本地存储key
static const storageFirstOpen = 'first_open';
static const storageLanguageCode = 'language_code';
static const storageThemeCode = 'theme_code';
static const storageToken = 'token';
static const StorageProfile = 'profile';
相关推荐
sunly_18 小时前
Flutter:搜索页,搜索bar封装
开发语言·javascript·flutter
一人前行19 小时前
Flutter_学习记录_导航和其他
javascript·学习·flutter
古希腊被code拿捏的神19 小时前
【Flutter】旋转元素(Transform、RotatedBox )
flutter
前端没钱19 小时前
flutter入门系列教程<三>:tabbar的高度自适用,支持无限滚动
javascript·flutter
玫瑰花开一片一片1 天前
Flutter android debug 编译报错问题。插件编译报错
android·flutter
TimeDoor1 天前
Dart语言和flutter框架的特性
flutter·dart
玫瑰花开一片一片1 天前
Flutter 给安卓签名时 使用 Android Studio 找不到 Generate Signed Bundle/APK 菜单问题
android·flutter·android studio
一人前行1 天前
Flutter_学习记录_基本组件的使用记录
flutter
恋猫de小郭2 天前
深入 Flutter 和 Compose 的 PlatformView 实现对比,它们是如何接入平台控件
flutter
allanGold2 天前
【flutter版本升级】【Nativeshell适配】nativeshell需要做哪些更改
flutter·nativeshell