@echo off setlocal enabledelayedexpansion for /r . %%a in (ipch) do ( if exist %%a ( echo "delete" %%a rd /s /q "%%a" ) ) for /r . %%a in (*.sdf) do ( ...
分类:
其他好文 时间:
2020-07-26 00:14:13
阅读次数:
71
TSO Memory Model TSO Total Store Order。 TSO 就是在SC的基础上放松write-to-read的条件,即允许先写后读的重排序,将写操作延迟,让之后的读操作先执行(当然目前的讨论都是基于不同地址的,相同地址存在数据依赖性一般不允许重排序,但也有允许的模型)。除 ...
分类:
其他好文 时间:
2020-07-25 10:03:49
阅读次数:
82
<!DOCTYPE html><html lang="en"><head> <title>Title</title> <meta charset="UTF-8"><!--<!– <script src="js_file01.js"></script>–> 尽量放后 ...
分类:
Web程序 时间:
2020-07-25 09:56:22
阅读次数:
87
package LeetCode_283 /** * 283. Move Zeroes * https://leetcode.com/problems/move-zeroes/description/ * * Given an array nums, write a function to move ...
分类:
其他好文 时间:
2020-07-25 09:55:29
阅读次数:
69
Given an array of words and a width maxWidth, format the text such that each line has exactly maxWidth characters and is fully (left and right) justif ...
分类:
其他好文 时间:
2020-07-25 09:35:28
阅读次数:
71
【原题】 Description Rain has pummeled the cows' field, a rectangular grid of R rows and C columns (1 <= R <= 50, 1 <= C <= 50). While good for the grass, ...
分类:
其他好文 时间:
2020-07-24 22:06:12
阅读次数:
92
开发模式: 1、模式一(Model One):JSP(只使用JSP进行开发) Servlet:本质是一段Java程序,适合处理业务逻辑,但是Servlet不适合输出一个html网页(因为在Servlet中输出网页,得通过response获取流,通过out.write一行一行将html标签等内容输出到 ...
分类:
编程语言 时间:
2020-07-24 21:51:49
阅读次数:
73
循环结构(while/do-while/for) 1.while循环 1.语法: while ( 循环条件 ) { 循环体 } 2.用途:while便于处理循环次数确定或者循环次数不确定的情况 3.使用的必要条件 (1)计数器初始化 (2)判断条件 (3)循环体 (4)计数器变化 4.while执行 ...
分类:
其他好文 时间:
2020-07-24 21:36:17
阅读次数:
56
@echo off setlocal enabledelayedexpansion for /r "G:\111\" %%i in (*.*) do ( set b=%%~nxi set b=!b: =_! echo %%~dpi echo !b! echo %%~nxi ren "%%i" !b! ...
分类:
其他好文 时间:
2020-07-24 18:58:13
阅读次数:
72
docker 容器使用 systemctl 命令是报错 看了许多解决方案,但是对于新手来说并不友好,不是特别清楚 报错内容: System has not been booted with systemd as init system (PID 1). Can't operate. Failed t ...
分类:
其他好文 时间:
2020-07-24 16:18:05
阅读次数:
82