摘要: 事务相关概念 事务是一组操作的集合,这些操作要么一起提交成功,要么一起失败; 事务的四大特性:ACID: 原子性(Atomicity):事务是不可分割的最小操作单元,要么全部成功,要么全部失败。 一致性(Consistency):事务完成时,必须使所有的数据都保持一致状态。 隔离性(Isolatio 阅读全文
posted @ 2023-04-27 10:33 沈先生爱猫咪 阅读(20) 评论(0) 推荐(0) 编辑
摘要: string和Date 的相互转换 // string 与 Date的相互转换用 // String to Date DateFormat format = new SimpleDateFormat("yyyy-MM-dd HH:mm:ss"); String dateTest = "2023-4- 阅读全文
posted @ 2023-04-11 14:38 沈先生爱猫咪 阅读(9) 评论(0) 推荐(0) 编辑
摘要: | 基本数据类型 | 包装类 | | | | | byte | Byte | | boolean | Boolean | | short | Short | | char | Character | | int | Integer | | long | Long | | float | Float 阅读全文
posted @ 2023-04-11 09:53 沈先生爱猫咪 阅读(10) 评论(0) 推荐(0) 编辑
摘要: 常量的定义 c# 使用const const int a = 1; java 使用final final int a =1; 控制台的输入与输出 c# string consoleInputValue = Console.ReadLine();//输入,读取一行,返回的是stirng,需要读取值类型 阅读全文
posted @ 2023-04-10 20:41 沈先生爱猫咪 阅读(21) 评论(0) 推荐(0) 编辑
摘要: 浮动实现 前面放置的两个div进行浮动,后面一个让其margin auto 居中 <style> /* 浮动三栏 */ .father div { width: 200px; height: 200px; } .left { background-color: red; float: left; } 阅读全文
posted @ 2023-04-10 15:00 沈先生爱猫咪 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 设置在父元素的属性 设置在子元素的属性 justify-content 定义的是主轴方向的排列方式 flex-direction 定义主轴的方向 align-content 适用于多行的排列方式 align-items 适用于单行的排列方式 flex-grow 将剩余的部分作为增长的空间,值是增长占 阅读全文
posted @ 2023-04-10 14:04 沈先生爱猫咪 阅读(14) 评论(0) 推荐(0) 编辑
摘要: 相对位置和绝对位置 现有3个div如下 <style> .brother { width: 200px; height: 200px; background-color: yellow; } .father { width: 200px; height: 200px; background-colo 阅读全文
posted @ 2023-04-08 19:26 沈先生爱猫咪 阅读(37) 评论(0) 推荐(0) 编辑
摘要: 引出问题 这是一个正常的排版 代码如下 <style> .father { width: 200px; border: 1px solid red; } .son { width: 100px; height: 100px; background-color: blue; } </style> <d 阅读全文
posted @ 2023-04-08 17:51 沈先生爱猫咪 阅读(7) 评论(0) 推荐(0) 编辑
摘要: 盒⼦的位置和⼤⼩ 尺寸 宽度 width: ⻓度|百分⽐|auto ⾼度 height 边界 margin padding 上右下左|上下左右 padding与margin padding:10px 10px 10px 10px //上左下右 padding:5px 10px //上下边距5px、左 阅读全文
posted @ 2023-04-08 11:13 沈先生爱猫咪 阅读(36) 评论(0) 推荐(0) 编辑
摘要: 上下两个盒子边距合并问题 <style> * { margin: 0px; padding: 0px; } div { width: 100px; height: 100px; } .top { background-color: red; margin-bottom: 20px; } .botto 阅读全文
posted @ 2023-04-08 10:47 沈先生爱猫咪 阅读(32) 评论(0) 推荐(0) 编辑