相关文章
Spark计算引擎介绍
1. Spark是什么
Apache Spark是专为大规模数据处理而设计的快速通用的计算引擎。
Spark是加州大学伯克利分校的AMP实验室(Algorithms, Machines and People Lab)开源的类Hadoop MapReduce的通用并行框架,拥有Hadoop MapReduce所具有的优点&…
建站知识
2024/12/3 1:27:49
Flutter学习笔记(四)函数
常见的函数格式
返回类型 方法名称(参数1,参数2,......){方法体return 返回值;
}
//常见的函数
//[] 内的为可选参数 , sex "boy" 为设置参数默认值
String getPersionInfo(String name, [int age, Strin…
建站知识
2024/12/3 1:47:13
Flutter 函数
1.可选参数1.1.位置可选参数 []void printInfo1(String name, [int? score, double? height]) {}1.2.命名可选参数 {}void printInfo2(String name, {int? score, double? height}) {}可选参数默认值void printInfo3(String name, {int score 1, double height 2.0}) {}2…
建站知识
2024/12/3 1:30:33
flutter 开发 (一)
demo效果: flutter 学习参考:https://space.bilibili.com/64169458/channel/detail?cid131083
flutter 链接模拟器 在安装目录bin目录下 执行 shell : adb connect 127.0.0.1:port host 可以在模拟器配置中查看 如逍遥模拟器的配置目录&…
建站知识
2024/11/28 16:23:22
Flutter 开发
Flutter 目录 一、背景
二、Dart
三、Flutter
四、开发
- 安装配置 - 结构和导包 - Widget 介绍
分享个返利程序,可以赚点零花钱。
建站知识
2024/11/28 16:23:22
Flutter学习笔记 -- Hello Flutter
1. Flutter的优势
跨平台性高帧率流畅UI热重载 …
2.Flutter的架构 (1) Foundation层与Animation、Painting、Gestures层, 这两层提供动画、绘制以及手势操作。
(2) Rendering层负责构建UI树。
(3) Widgets层与Material、Cupertino层, 其中Widgets层是Flutter提供的基础组件…
建站知识
2024/11/20 4:08:43