作者热门文章
- r - 以节省内存的方式增长 data.frame
- ruby-on-rails - ruby/ruby on rails 内存泄漏检测
- android - 无法解析导入android.support.v7.app
- UNIX 域套接字与共享内存(映射文件)
我看到有些地方将代码块分配给小部件或变量,创建两者有什么区别?
示例代码如下:
//creating new widget
Widget ratingSection = Container(
padding: const EdgeInsets.all(20.0),
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: [ ..............
],
),
);
//creating new var
var ratingSectionVar = Container(
padding: const EdgeInsets.all(20.0),
child: Row(
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: [ ..............
],
),
);
return MaterialApp( ......
....
body: ListView(
children: <Widget>[
ratingSection,
ratingSectionVar,
],
),
),
);
最佳答案
Dart 提供了一个叫做 Type inference 的东西
The analyzer can infer types for fields, methods, local variables, and most generic type arguments. When the analyzer doesn’t have enough information to infer a specific type, it uses the dynamic type.
因此,当您使用 var
关键字创建变量时,您可以从赋值语句的右侧获取类型所以 var ratingSectionVar = Container()
意味着 ratingSectionVar
的 Type 是 Container
也是从 Widget
类派生的
关于dart - 创建一部分 flutter 代码作为小部件和变量有什么区别,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/51298695/
我是一名优秀的程序员,十分优秀!