# 查看已安装dockeryum list installed | grep dockerrpm -qa | grep docker # 卸载旧版本(如果之前安装过的话)yum remove docker \ docker-client \ docker-client-latest \ docker ...
分类:
其他好文 时间:
2021-05-24 15:43:09
阅读次数:
0
import java.util.LinkedList; import java.util.Scanner; class TreeNode{ char val; TreeNode leftchild; TreeNode rightchild; int flag;//用于后续非递归 } public ...
分类:
其他好文 时间:
2021-05-24 15:37:05
阅读次数:
0
下载地址:https://download.csdn.net/download/qq_31293575/18340399 项目介绍 List and Table Elements of HTML The George Washington University Computer Science 10 ...
分类:
Web程序 时间:
2021-05-24 15:32:14
阅读次数:
0
情况说明 col_Index是cxGirdDBView中的列,被添加到Group当中 GetDisplayText时需要读取数据记录,测试时发现其从Arecord读取中读取的的数据不对 看源码是在group当中导致 使用下面方法处理,找到其下一条Record从中读取 procedure TfrmHO ...
分类:
其他好文 时间:
2021-05-24 15:25:39
阅读次数:
0
不输出的代码 for 语句/ each语句 for (var x = 0; x < 3; x++) li item 编译为: <li>item</li> <li>item</li> <li>item</li> 写成块的形式 用 each var list = ["Uno", "Dos", "Tres ...
分类:
其他好文 时间:
2021-05-24 15:12:52
阅读次数:
0
二维几何变换 齐次坐标 齐次坐标就是用n+1维矢量表示n维矢量,$p(x,y)\(的齐次坐标表示为\)(wx,wy,w)=(X,Y,w)$。 二维规范化齐次坐标:$w=1$时,\(p(x,y,1)\) 类似三维规范化齐次坐标为$(x,y,z,1)$ 齐次坐标的目的:避免了平移变换使用矩阵加法运算,是 ...
分类:
其他好文 时间:
2021-05-24 15:09:31
阅读次数:
0
npm config -h npm config list prefix 为 --globa 的安装路径 npm config edit 调用notepad编辑 npm ls npm list -g 全局模块 npm list recast ...
分类:
其他好文 时间:
2021-05-24 14:55:51
阅读次数:
0
f = open(r'data6_1.txt') f1=open('data6_2.txt','w') a = list(f) a.sort(key=lambda x : x[8:]) a.reverse() for i in a: i=i.strip('\n') f1.write(''.join( ...
分类:
其他好文 时间:
2021-05-24 14:43:52
阅读次数:
0
图: 懒得写解释了直接上代码: 代码: package chenlong.chenlong.viewstudy.myview; import android.content.Context; import android.graphics.Canvas; import android.graphic ...
分类:
移动开发 时间:
2021-05-24 14:36:13
阅读次数:
0
let list = [] let arr = {'a':'1','b':'2','c':'3','d':'4'} for(var key in arr){ console.log("key:"+key+",value:"+arr[key]) list.push({ 'key':key, 'valu ...
分类:
Web程序 时间:
2021-05-24 14:32:47
阅读次数:
0