1、 计划: 为一年级小学生设计口算题卡 2、 需求分析 1用户故事 作为一个一年级小学生的家长,我希望制作一个出题软件,完成100以内的正整数的加减法题随机产生,一边减轻我的负担。 2 技术难点 随机产生100以内的正整数 随机产生加减符号 减法负值的剔除 3、代码规范: 4、具体设计: 5、具体 ...
分类:
其他好文 时间:
2021-06-02 19:30:05
阅读次数:
0
1.主节点线程状态(Replication Master Thread States): Finished reading one binlog; switching to next binlog 线程 已经完成读取 binlog 文件,并切换到下一个 binlog 文件 Master has se ...
分类:
数据库 时间:
2021-06-02 19:03:34
阅读次数:
0
测试环境 系统 IP 软件 Centos8 192.168.248.80 lvs+keepalived Centos8 192.168.248.81 lvs+keepalived Centos8 192.168.248.100 Web server Centos8 192.168.248.101 W ...
分类:
其他好文 时间:
2021-06-02 17:50:07
阅读次数:
0
场景在当前项目中,因为之前使用数据库查询,而随着数据的增多,查询速度会越来越慢,所以需要使用Java来调用hive进行数据统计。本篇博文主要是使用springboot+hive来查询hive数据,并返回查询的数据结果。 环境软件 版本springboot 2.1.8.RELEASECDH 5.15. ...
分类:
编程语言 时间:
2021-06-02 15:43:55
阅读次数:
0
1.ip public class TestInetAddress { public static void main(String[] args) { try { //查询本机IP,可以new InetAddress byName = InetAddress.getByName("localhos ...
分类:
Web程序 时间:
2021-06-02 15:28:12
阅读次数:
0
Execution Plans in SQL Server Introduction In this article, I’m going to explain what the Execution Plans in SQL Server are and how to understand the ...
分类:
数据库 时间:
2021-06-02 14:46:02
阅读次数:
0
1、定义一个执行器抽象类 public abstract class AbstractExecutor<T> { /** * 执行业务逻辑 */ public void doExecute(T t) { try { // 初始化 this.init(t); // 执行逻辑 this.process( ...
分类:
其他好文 时间:
2021-06-02 13:14:08
阅读次数:
0
文章来源:gzh数据万花筒 文章链接:https://mp.weixin.qq.com/s/7uBQ3_sR2j_zxH8mj7nKeQ 点击上方蓝字关注我们 因果推断系列文章分为上下两篇,目录结构如下所示,上篇文章可点击阅读原文查看。 利用Dowhy框架进行因果分为推断上下两篇 上篇 1.Dowh ...
分类:
编程语言 时间:
2021-06-02 12:13:46
阅读次数:
0
1. HashMap的底层实现原理 HashMap的底层:数组+链表 (jdk7及之前) 数组+链表+红黑树 (jdk 8)HashMap的底层实现原理?以jdk7为例说明: HashMap map = new HashMap(): 在实例化以后,底层创建了长度是16的一维数组Entry[] tab ...
分类:
其他好文 时间:
2021-06-02 10:34:15
阅读次数:
0
异常 try { 被检查的语句 } catch(异常信息类型[变量名]) { 进行异常处理的语句 } #include <math.h> #include <iostream> using namespace std; double triangle(double a, double b, doub ...
分类:
其他好文 时间:
2021-05-25 18:14:25
阅读次数:
0