Markdown学习 一级标题:#+空格+标题名字 二级标题 二级标题:##+空格+标题名字 三级标题 二级标题:###+空格+标题名字 多级标题:几级标记几个#+空格+标题名 最多只支持六级标题 字体 Hello,world! 粗体:文字两边加** Hello,world! 斜体:文字两边加* H ...
分类:
其他好文 时间:
2021-07-05 18:50:26
阅读次数:
0
一、适配器模式定义 1.适配器模式又叫做变压器模式,它的功能是将一个类的接口变成客户端所期望的另一种接口,从而使原本因接口不匹配而导致无法在一起工作的两个类能够一起工作,属于结构型设计模式 2.在软件开发中,基本上任何问题都可以通过增加一个中间层进行解决。适配器模式,其实就是一个中间层。适配器模式其 ...
分类:
其他好文 时间:
2021-07-05 18:50:02
阅读次数:
0
1、启动服务 systemctl restart mysqld.service 报错: 启动数据库Can‘t connect to MYSQL server through socket ''var/lib/mysql/mysql.cock(146 lock timed out:Retry tran ...
分类:
数据库 时间:
2021-07-05 17:35:04
阅读次数:
0
当使用start transaction或begin语句开启一个事务,或者将系统变量auto commit设置为off时,事务不会自动提交,但是如果当输入某些语句会隐式的被提交掉,就像输入了commit语句一样,这种因为某些特殊的语句而导致事务提交的情况叫做隐式提交,会导致事务隐式提交语句包括: ( ...
分类:
其他好文 时间:
2021-07-05 17:25:11
阅读次数:
0
using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.IO;using System.Linq;usi ...
1.安装python sudo yum install -y curl policycoreutils-pythonopenssh-server 2.将SSH服务设置成开机自启动,分别执行以下命令: sudo systemctl enable sshd sudo systemctl start ss ...
分类:
系统相关 时间:
2021-07-01 17:07:32
阅读次数:
0
线程共包括以下 5 种状态: 1. 新建状态(New): 线程对象被创建后,就进入了新建状态。例如,Thread thread = new Thread()。 2. 就绪状态(Runnable): 也被称为“可执行状态”。线程对象被创建后,其它线程调用了该对象的start()方法,从而来启动该线程。 ...
分类:
编程语言 时间:
2021-07-01 16:42:38
阅读次数:
0
原文地址:https://www.cnblogs.com/godlovelian/p/5643996.html 前提:存在数据库di_test,主键为id。1.创建一个索引sequence create sequence di_test_id minvalue 1 nomaxvalue start ...
分类:
数据库 时间:
2021-07-01 16:25:30
阅读次数:
0
安装必要的软件包 pacman -S bluez bluez-utils pavucontrol pipewire-pulse bluez软件包提供蓝牙协议栈 bluez-utils软件包提供bluetoothctl工具 pulse作为原来pulseaudio的替代,pavucontrol提供图形化 ...
分类:
系统相关 时间:
2021-06-30 18:39:48
阅读次数:
0
Example3 koide3 edited this page on 18 Mar 2020 · 17 revisions In this example, we correct a largely bent map with loop closing, edge refinement, and ...
分类:
其他好文 时间:
2021-06-30 18:35:10
阅读次数:
0