Java进阶-多线程与并发
理论基础举例:1000 个线程同时对一个计数器(cnt)进行++操作,由于 cnt++ 不是原子操作,会导致最终结果小于预期的 1000。 1234567891011public class ThreadUnsafeExample { private int cnt = 0; public void add() { cnt++; } public int get() { return cnt; }} 1234567891011121314151617181920import java.util.concurrent.CountDownLatch;import java.util.concurrent.ExecutorService;import java.util.concurrent.Executors;public class Example { public static void main(String[] args) throws...
Java进阶-集合
主要包括 Collection 和 Map 两种: Collection 存储着对象的集合 Map 存储着键值对的映射表 CollectionCollection 是所有集合类的根接口,包含一些基础的操作,如add()、remove()、size()、clear()等。 List 接口:有序集合,允许重复元素,支持按索引位置访问元素。 常见实现:ArrayList、LinkedList、Vector、Stack等。 Set 接口:不允许重复元素,且没有元素的顺序保证(除非使用LinkedHashSet或TreeSet)。 常见实现:HashSet、LinkedHashSet、TreeSet等。 Queue 接口:用于存储按某种顺序处理的元素,通常遵循先进先出(FIFO)原则。 常见实现:LinkedList、PriorityQueue等。 Deque...
Seata:Quick Start
事务事务(Transaction),一般是指要做的或做的事情。术语中指访问并可能更新数据库中各个数据项的一个程序执行单元。事务通常由高级数据库操作语言或编程语言书写的用户程序所引起,并用形如 begin transaction 或 end transaction 语句(或函数调用)来界定。事务由事务开始(begin transaction)和事务结束(end transaction)之间执行的全体操作组成。 事务通常具备以下四个特性,简称为...
Go 实现广度优先搜索
广度优先搜索 0 1 2 3 4 0 0 1 0 0 0 1 0 0 0 1 0 2 0 1 0 1 0 3 1 1 1 0 0 4 0 1 0 0 1 5 0 1 0 0 0 按照“上左下右”的顺序进行探索。 0-(0, 0) 0 1 2 3 4 0 0 1 1 1 2 1 1 3 1 1 1 4 1 1 5 1 {$\varnothing$,$\varnothing$,(1, 0),$\varnothing$} $\text {Q}$:(1, 0) 1-(1, 0) 0 1 2 3 4 0 0 1 1 1 1 2 1 1 3 1 1 1 4 1 1 5 1 {$\varnothing$,$\varnothing$,(2, 0),(1, 1)} $\text {Q}$:(2, 0),(1, 1) 2-(2,...
Go 基础回顾
1 分支 if-else 1234567891011121314151617181920// 基本的 if-elseif condition { // 代码块} else { // 代码块}// if 可以包含一个初始化语句if result := someFunction(); result > 0 { // 使用 result}// if-else if-else 链if condition1 { // 代码块} else if condition2 { // 代码块} else { // 代码块} switch 12345678910111213141516171819// switch 语句switch value {case 1: // 代码块case 2, 3, 4: // 代码块default: // 代码块}// switch 无条件 - 类似 if-else...
Git 开发流程:从 Fork 到 PR 的完整指南
一、预先准备 配置远程仓库 1$ git remote add upstream https://github.com/apache/dubbo-go.git 12345$ git remote -vorigin git@github.com:solisamicus/dubbo-go.git (fetch)origin git@github.com:solisamicus/dubbo-go.git (push)upstream https://github.com/apache/dubbo-go.git (fetch)upstream https://github.com/apache/dubbo-go.git (push) 配置个人信息(如未配置) 12$ git config --global user.name "Your Name"$ git config --global user.email "your.email@example.com" 二、功能分支开发2.1 更新 upstream...