Create and configure model-driven app interactive experience dashboards Effective Nov 2020, some terminology in Common Data Service has been updated. ...
分类:
移动开发 时间:
2020-11-16 13:14:10
阅读次数:
14
1. 华为鸿蒙基于jerryscript构建物联网应用框架 2020年9月10日 鸿蒙OS 1.0 正式版发布,面向物联网领域,鸿蒙推出了类web开发架构ACE JS = LiteOS + jerryscript + ACE JS = 类web开发方式, 同时提供了PC模拟器实时预览支持; 整体开发 ...
分类:
移动开发 时间:
2020-11-08 17:39:26
阅读次数:
34
复杂度 算法的优劣取决于两点 1:执行时间 2:占用内存大小 一:时间复杂度 时间复杂度,说的不是算法执行的时间,而是算法执行的次数 1:常数阶 T(n) =O(1) method(){ int i=1; int j=1; i++; j++; ..... i++ j++; } 上述方法,从上到下只执 ...
分类:
其他好文 时间:
2020-11-04 17:52:30
阅读次数:
16
本人学习Linux一直在使用阿里云,网上下载的都是别人装过的,解压到电脑很乱,因为总是会有别人的痕迹,今天去阿里云镜像下载了一个CentOS7,自己从头装一下,在此记录,开始吧: 官方下载的速度自己试一下就知道了,下面给出阿里云下载(比百度网盘快多了,默认大家都是百度网盘的会员哈) 阿里云镜像下载地 ...
分类:
系统相关 时间:
2020-11-04 17:35:52
阅读次数:
28
E Nothing is eternal in the world, Kostya understood it on the 7-th of January when he saw partially dead four-color garland. Now he has a goal to rep ...
分类:
其他好文 时间:
2020-11-02 10:34:31
阅读次数:
23
You are given a perfect binary tree where all leaves are on the same level, and every parent has two children. The binary tree has the following defin ...
分类:
其他好文 时间:
2020-10-27 11:41:41
阅读次数:
23
You are a professional robber planning to rob houses along a street. Each house has a certain amount of money stashed, the only constraint stopping yo ...
分类:
其他好文 时间:
2020-10-27 10:55:44
阅读次数:
21
工厂Bean 一:定义: 在配置文件中定义bean类型可以和返回类型不一样 二:步骤: 第一步:创建类,让这个类序偶为工厂bean,实现接口Factorybean,而在这个FactoryBean里面也可以存多个函数,返回多个对象 第二步:实现接口里面的方法,在实现的方法中定义返回的bean类型 三: ...
分类:
其他好文 时间:
2020-10-26 11:31:16
阅读次数:
20
异常: 原因:了解的浅显的原因是,数据更新的一个时机导致的 解决方法: 使用异步更新数据: ...
分类:
其他好文 时间:
2020-10-24 10:04:11
阅读次数:
23
map方法 let objArr = [{name: 'xue',age: 24},{name: 'xue',age: 25},{name:'qing'}] const res = new Map(); objArr = objArr.filter((arr) => !res.has(arr.nam ...
分类:
编程语言 时间:
2020-10-24 09:59:43
阅读次数:
28