countDownLatch这个类使一个线程等待其他线程各自执行完毕后再执行。 public class CountDownLatchDemo { public static void main(String[] args) throws InterruptedException{ /** * * ...
分类:
其他好文 时间:
2021-05-24 13:31:31
阅读次数:
0
html { -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; -webkit-tap-highlight-color: transparent; height: 100%; } body { margin: 0; font-si ...
分类:
Web程序 时间:
2021-05-24 13:06:47
阅读次数:
0
public class WindowSell2 { private int num=0; public synchronized void increade() throws InterruptedException{ while (num != 0){ this.wait(); } num++; ...
分类:
编程语言 时间:
2021-05-24 12:36:19
阅读次数:
0
<html> <embed height="200" type="application/x-shockwave-flash" width="200" src="http://www.blogclock.cn/swf/S1000746cf11489-9.swf" wmode="transparent ...
分类:
其他好文 时间:
2021-05-24 08:27:38
阅读次数:
0
写代码过程中发现,用base64编码后会带有b,这会影响到请求结果,该如何清除b呢? 下面来看一下实际的演示代码: import base64 before_base64 = 'abc'.encode() after_base64 = base64.b64encode(before_base64) ...
分类:
编程语言 时间:
2021-05-24 06:22:16
阅读次数:
0
MySQL相关概念 MySQL架构 逻辑结构 库的物理结构 表的物理结构 https://www.cnblogs.com/Neeo/articles/13527500.html 1. utf-8 一个字符占几个字节 但抛开数据库,标准的 UTF-8 字符集编码是可以用 1~4 个字节去编码21位字符 ...
分类:
数据库 时间:
2021-05-24 06:01:05
阅读次数:
0
问题原因: WPF 打开本地图片,同时另一个进程去访问这个图片; BitmapImage bitmap = new BitmapImage(); bitmap.BeginInit(); bitmap.UriSource = new Uri(filePath); bitmap.EndInit(); I ...
查看远程与本地所有分支 git branch -a 拉取远程分支到本地 git checkout -b '车管家' remotes/origin/车管家 切换分支 git checkout -f test ...
分类:
其他好文 时间:
2021-05-24 04:44:55
阅读次数:
0
Delphi UniCode转汉字(\u 格式)、汉字转UniCode(\u 格式) 1、UniCode转汉字 function UnicodeToChinese(sStr: string): string; var i: Integer; index: Integer; temp, top, la ...
引入 Element 你可以引入整个 Element,或是根据需要仅引入部分组件。我们先介绍如何引入完整的 Element。 ¶完整引入:在 main.js 中写入以下内容: import Vue from 'vue'; import ElementUI from 'element-ui'; imp ...
分类:
Web程序 时间:
2021-05-23 23:33:38
阅读次数:
0