1 引入 Python 3.x 和 Python 2.x 的一个区别是 Python 3 可以使用直接使用 super().xxx 代替 super(Class, self).xxx super() 函数是用于调用父类(超类)的一个方法。 super() 是用来解决多重继承问题的,直接用类名调用父类 ...
分类:
其他好文 时间:
2021-03-15 10:36:46
阅读次数:
0
备用 // generator import com.intellij.database.model.DasTable import com.intellij.database.model.ObjectKind import com.intellij.database.util.Case impor ...
分类:
其他好文 时间:
2021-03-12 14:19:04
阅读次数:
0
在不同的数据库中,如何查询字段值长度?Mysql、Oracle、SQL-Server 中提供了不同的函数方法。 ...
分类:
数据库 时间:
2021-03-10 13:22:12
阅读次数:
0
一、服务器规划 主机名 主机IP 磁盘配比 角色 node1 public-ip:10.0.0.130cluster-ip:192.168.2.130 sda,sdb,sdcsda是系统盘,另外两块数据盘 ceph-deploy,monitor,mgr,osd node2 public-ip:10. ...
分类:
其他好文 时间:
2021-03-10 13:09:58
阅读次数:
0
一、单选框(radio)单选框的选择很简单,因为是单选,所以直接定位到元素后点击即可示例页面: 示例代码: from selenium import webdriver from selenium.webdriver.common.by import By driver = webdriver.Fi ...
分类:
其他好文 时间:
2021-03-10 12:56:10
阅读次数:
0
按英文的字面意思就比较好理解了: 常量指针:pointer to const 字面意思:指向常量的指针 指针常量:const pointer 字面意思:指针本身是个常量 看一段代码: char hello[6] = "hello"; char world[6] = "world"; const ch ...
分类:
编程语言 时间:
2021-03-10 12:55:03
阅读次数:
0
数据库基础知识 1.数据库存储结构 1.1 表是数据库的基本组成单元,所有的数据都以表格的形式组织,目的是可读性强。 1.2 表包括 行和列 1.2.1 行 :被称为数据/记录(data)1.2.2 列 :被称为字段(column) 1.3 每个字段都有 名字 数据类型 相关的约束 等属性。 1.4 ...
分类:
数据库 时间:
2021-03-08 14:13:53
阅读次数:
0
Oracle数据库分页示例: ps: Oracle ROWNUM 不能使用大于 -- 分页步骤-- 第一步:查询全量数据-- 第二步:以第一步的结果集作为一张表,限定条件是 rownum 小于结束行号, 结果列把 rownum,t.* 作为结果输出-- 第三步:以第二步的结果集作为一张表, 限定条件 ...
分类:
数据库 时间:
2021-03-08 13:51:26
阅读次数:
0
1-1. var let const 区别 var 是es5语法,有变量提升 let const是es6语法, 有块级作用域 var let 是变量,可修改;cosnt是常量,不可修改 2-1. typeof返回哪些类型 值类型:undefined string number boolean sym ...
分类:
其他好文 时间:
2021-03-08 13:04:03
阅读次数:
0
How to deploy EBS CSI on AWS EKS in China region? ISSUE Cannot access k8s.gcr.io repository in China region. Prerequisites Fetch the Account ID and sa ...
分类:
其他好文 时间:
2021-03-08 13:03:04
阅读次数:
0