语法 async 函数返回一个 Promise 对象 1. async function f() { return 'hello world' }; f().then( (v) => console.log(v)) // hello world 2. async function e(){ thro ...
分类:
其他好文 时间:
2020-06-15 17:40:57
阅读次数:
59
Given any string of N (≥) characters, you are asked to form the characters into the shape of U. For example, helloworld can be printed as: h d e l l r ...
分类:
其他好文 时间:
2020-06-15 15:34:10
阅读次数:
61
在Spring Boot中整合Servlet、Filter、Listener的方式 写在前面 从零开始的Spring Boot(1、搭建一个Spring Boot项目Hello World):https://www.cnblogs.com/gaolight/p/13097818.html 一、在Sp ...
分类:
编程语言 时间:
2020-06-13 23:31:34
阅读次数:
85
引用刘铁猛老师(大神)内容:https://www.bilibili.com/video/BV13b411b7Ht?p=23 1.面向对象主要是指封装,继承,多态。 2.类 类是一种数据结构,他可以包含数据成员(常量和字段),函数成员(方法,属性,事件,索引器,运算符,实例构造函数,静态构造函数和析 ...
SpringBoot01:Hello,World! SpringBoot简介 回顾什么是Spring Spring是一个开源框架,2003 年兴起的一个轻量级的Java 开发框架,作者:Rod Johnson 。 Spring是为了解决企业级应用开发的复杂性而创建的,简化开发。 Spring是如何简 ...
分类:
编程语言 时间:
2020-06-13 15:47:26
阅读次数:
72
搭建一个Spring Boot项目Hello World 1)从官网搭建项目: 1、官网地址:https://spring.io/projects/spring-boot 2、点击此处进入https://start.spring.io/:配置页面 3、配置如下:并点击generate 4、将生成的压 ...
分类:
编程语言 时间:
2020-06-12 10:53:34
阅读次数:
76
Holle world 新建一个文件夹,存放代码 新建一个java文件 编写代码 public class Hello{ public static void main(String[] args){ System.out.print("Hello,World!"); }} 4.编译javac + ...
分类:
其他好文 时间:
2020-06-11 19:46:20
阅读次数:
53
jenkins build 报错: [hello-world-freestyle] $ /bin/sh -xe /root/softs/apache-tomcat-9.0.35/temp/jenkins5323864766359302328.sh + mvn clean package /root/ ...
分类:
其他好文 时间:
2020-06-11 16:21:50
阅读次数:
160
问题: 过滤用户输入中前后多余的空白字符 ‘ ++++abc123 ‘ 过滤某windows下编辑文本中的'\r': ‘hello world \r\n' 去掉文本中unicode组合字符,音调 "Zhào Qián Sūn Lǐ Zhōu Wú Zhèng Wáng" 1.去掉两端字符串: str ...
分类:
编程语言 时间:
2020-06-11 10:45:07
阅读次数:
140
环境的安装 基础环境 已经安装Python3.0+版本 打开终端,输入 pip3 install pyecharts # 如果提示没有pip3 请输入:pip install pyecharts 等待安装 检查,在终端输入 pip3 list # 如果提示没有pip3 请输入:pip list 找到 ...
分类:
其他好文 时间:
2020-06-11 01:08:26
阅读次数:
82