信号灯法 线程通信 //信号灯法 标志位 public class TestPC2 { public static void main(String[] args) { Program program = new Program(); new Player(program).start(); new ...
分类:
其他好文 时间:
2021-02-10 13:15:30
阅读次数:
0
1 <!DOCTYPE html> 2 <html> 3 <head> 4 <meta charset="utf-8"> 5 <title></title> 6 7 </head> 8 <body> 9 <div id="one"> 10 <span> 11 在 HTML 中 DOM(文档对象模型) ...
分类:
Web程序 时间:
2021-02-10 13:09:14
阅读次数:
0
Problem Description There are n employees in Alternative Cake Manufacturing (ACM). They are now voting on some very important question and the leading ...
分类:
其他好文 时间:
2021-02-10 13:08:04
阅读次数:
0
This time, you are supposed to find $A+B$ where $A$ and $B$ are two polynomials. Input Specification: Each input file contains one test case. Each cas ...
分类:
其他好文 时间:
2021-02-10 13:03:20
阅读次数:
0
Vue(二) Axios异步通信 Axios是一个开源的可以用在浏览器端和Node.js的异步通信框架,它的主要作用就是实现Ajax异步通信 <head> <meta charset="UTF-8"> <title>Title</title> <!--解决闪烁问题--> <style> [v-clo ...
分类:
其他好文 时间:
2021-02-10 12:57:39
阅读次数:
0
一、查找镜像 1 docker search prometheus 2 docker search node-exporter 二、下载镜像 1 docker pull prom/prometheus 2 docker pull prom/node-exporter 三、验证下载的镜像是否存在 do ...
分类:
其他好文 时间:
2021-02-10 12:50:05
阅读次数:
0
1.安装教程参看:https://jingyan.baidu.com/article/3c48dd34be2a32e10be35881.html 2.用户解锁 --> 运行cmd --> 输入sqlplus / as sysdba 后回车,以超级管理员身份登录 --> 输入alter user 账户 ...
分类:
数据库 时间:
2021-02-09 12:40:40
阅读次数:
0
# 字典的value可以是任何值info = { 'k1': 'v1', # 键值对 'k2': 123, 'k3':True, 'k4':[ 1, '2', False, [11, 22,33] ], 'k5':(1, '2',), 'k6':{ 'kk1':'vv1', 'kk2':'vv2', ...
分类:
其他好文 时间:
2021-02-09 12:32:24
阅读次数:
0
DFS层次遍历,设置层数n,在node中按层数创建该层的数组,dfs时每层加入该层对应数组。 /** * Definition for a binary tree node. * public class TreeNode { * int val; * TreeNode left; * TreeNo ...
分类:
其他好文 时间:
2021-02-09 12:27:15
阅读次数:
0
一、Vue3.x 中的组件 组件可以拓展html标签,解决html标签构建应用的不足,Vue项目由一个一个的组件组成。 二、Vue3.x 中定义组件注册组件 1、定义一个公共的头部组件 components/header.vue <template> <header> 这是一个头部组件 </head ...
分类:
其他好文 时间:
2021-02-09 12:25:51
阅读次数:
0