一.下载 下载地址:https://www.scala-lang.org/download/all.html 下载对应得版本,有linux安装包、windows安装包,源码包,按需下载 二.windows安装 1)首先确保jdk1.8安装成功 2)解压文件到指定目录 3)配置环境变量 4)验证,如下 ...
分类:
其他好文 时间:
2020-07-22 02:13:37
阅读次数:
107
template <div class="each-one-in-list"> <div class="show-icon">进行中</div> <div class="show-signal"></div> <div class="main-title" title="test"> <strong ...
分类:
Web程序 时间:
2020-07-22 02:10:44
阅读次数:
211
线程和进程的区别? 进程: 是程序得一次之星过程,是系统运行程序的基本单位,因此进程是动态的。系统运行一个程序就是从一个进程的创建开始,到进程的结束的过程。 在java中当我们的main函数运行时就是启动了一个JVM进程,而main函数所在的线程就是进程中的一个线程,也称为主线程。 线程: 是比进程 ...
分类:
编程语言 时间:
2020-07-22 01:51:16
阅读次数:
68
##1、创建数据库 create database xxx; 创建后台数据库 ##2、创建用户、授权 grant all on 数据库.* to 用户@'%'identified by 'password'; GRANT SELECT, INSERT, UPDATE, REFERENCES, DEL ...
分类:
数据库 时间:
2020-07-22 01:49:24
阅读次数:
102
Promise是一个构造函数,自己身上有all、reject、resolve这几个眼熟的方法,原型上有then、catch等同样很眼熟的方法。 那就new一个 var p = new Promise(function(resolve, reject){ //做一些异步操作 setTimeout(fu ...
分类:
其他好文 时间:
2020-07-21 22:52:13
阅读次数:
90
ES6+react.js 中定义公共方法、常量 1、公共方法 1.1 constantFunction.js 文件(不用写class域中) // 解析时间 将时间戳变成可读的string const parseTime = (text)=>{ if(!!text && typeOf(text) 'n ...
分类:
Web程序 时间:
2020-07-21 22:42:19
阅读次数:
190
js 克隆对象 原文:http://www.360doc.com/content/10/0305/13/15055_17649067.shtml note 由于JAVASCRIPT的对象到对象的赋值是传址的,当我需要对两个相同内容对象进行更改与比较时,我就需要把旧对象CLONE出来。 code 定义 ...
分类:
Web程序 时间:
2020-07-21 22:01:08
阅读次数:
82
vue checkbox 布尔值互转01 note vue checkbox和数据进行绑定后(v-model),只能对应true、false布尔值类型,checkbox v-model=0 or 1是不可行。所以只能转换了,获取数据填充到checkbox时01->bool,提交数据给后台时bool- ...
分类:
其他好文 时间:
2020-07-21 21:35:52
阅读次数:
87
题目链接 Polycarpus has a ribbon, its length is n. He wants to cut the ribbon in a way that fulfils the following two conditions: After the cutting each r ...
分类:
其他好文 时间:
2020-07-21 21:35:20
阅读次数:
72
自行安装 elementUI和pinyin-match 组件 <template> <el-select v-model="newValue" :filterable="filterable" :multiple="multiple" :filter-method="filterMethod" v- ...
分类:
其他好文 时间:
2020-07-21 21:27:48
阅读次数:
183