首页
首页
沸点
课程
直播
资讯
活动
开放社区
商城
APP
插件
搜索历史
清空
创作者中心
写文章
发沸点
掘金会员预售 5.16-6.16
登录
举报沸点
请选择举报理由
和话题不符
恶意攻击谩骂
广告营销
我跑步前脚先着地
Flutter
|
FaKen_Tech
Android/Flutter
30
关注
30
关注者
545
掘力值
关注
关注
获得徽章 0
动态
文章
专栏
沸点
收藏集
2
关注
赞
66
文章 64
沸点 2
资讯 0
赞
66
关注
返回
|
搜索文章
文章
热门
最新
我跑步前脚先着地
1年前
Flutter
Flutter 开发跨平台的插件(旧版的MethodChannel)
生成一个Federated Plugin插件的过程,以前老版开发跨平台插件使用MethodChannel,新版开发方式进行了改进,成为Federated Plugin. 步骤1. 创建file_picker_platform_interface (package) 步骤2. 创…
965
1
4
我跑步前脚先着地
1年前
Dart
依赖注入Dependency Injection的三种方式
类A使用类B的属性或者方法,实现某种功能,那么B就是A的一个依赖,或者说A依赖于B。 比如汽车Car,借助轮子Wheel,实现run的功能。
1135
2
评论
我跑步前脚先着地
1年前
Flutter
Flutter之特殊方法名call--Callable Class
更新:language dart tour对于这种类,有个专门的名称,叫callable class.
79
点赞
评论
我跑步前脚先着地
1年前
Flutter
Mac/Windows 输入框打开表情emoji快捷键
EveryBodylovesemoji!Mac:Command+Control+SpaceWindows:Windows+;
162
点赞
评论
我跑步前脚先着地
1年前
Flutter
flutter之change_notifier.dart
ListenableValueListenable_MergingListenableChangeNotifierValueNotifier
123
点赞
评论
我跑步前脚先着地
1年前
Flutter
flutter之InheritedWidget使用
不同于Android的命令式编程(Imperative Programming),每个View都有一个引用ID来进行数据刷新和操作,具体操作具体实现。 Flutter是申明式编程(Declarative Programming),通过申明的方法播放操作广播,不定义具体操作。 F…
124
点赞
评论
我跑步前脚先着地
2年前
LeetCode
LeetCode -Find All Anagrams in a String 找到给定字符串中所有字符的子串
Given a string s and a non-empty string p, find all the start indices of p's anagrams in s. Strings consists of lowercase English letters o…
108
点赞
评论
我跑步前脚先着地
2年前
LeetCode
LeetCode -- Maximum Sum Circular Subarray 最大和的环形非空子数列
这是普通数列求最大和的子数列的升级版。 dp[i] = value[i] + max( 0, dp[i-1]),其中value[i]表示下标i的值。 极端情况,因为是非空子数列,所以如果全为负数时,2中的sumTotal = minSum,此时应该选择1中的maxSumSequ…
99
点赞
评论
我跑步前脚先着地
2年前
LeetCode
LeetCode -- Implement Trie (Prefix Tree) 实现前缀树(字典树)
Implement a trie with insert, search, and startsWith methods. 实现字典树的插入、搜索和startsWith方法。 题解:字典树就是多叉树,区别是多叉树除了指向子节点的数组,还保存的是当前节点值。而字典树保存的是标明自…
558
点赞
评论
我跑步前脚先着地
2年前
LeetCode
LeetCode -- remove k it 移除k位
Given a non-negative integer num represented as a string, remove k digits from the number so that the new number is the smallest possible. …
130
点赞
评论
下一页
个人成就
文章被点赞
39
文章被阅读
50,609
掘力值
545
关注了
30
关注者
30
收藏集
2
关注标签
38
加入于
2017-03-31