-
Notifications
You must be signed in to change notification settings - Fork 1.3k
add docsify #17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
Open
add docsify #17
Changes from all commits
Commits
Show all changes
8 commits
Select commit
Hold shift + click to select a range
9fe65c5
add docsify
beldon ad34d91
udpate sitebar
beldon 937bbfc
update sidebar
beldon 51bc1a6
fix
beldon a43fdea
修改错别字
beldon 30409ab
update name
beldon e42784c
Merge branch 'master' of github.com:CL0610/Java-concurrency
beldon 374f46a
update
beldon File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
2 changes: 1 addition & 1 deletion
01.并发编程的优缺点/并发编程的优缺点.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
26 changes: 26 additions & 0 deletions
index.html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta charset="UTF-8"> | ||
<title>Document</title> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" /> | ||
<meta name="description" content="Description"> | ||
<meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0"> | ||
<link rel="stylesheet" href="//unpkg.com/docsify/lib/themes/vue.css"> | ||
</head> | ||
<body> | ||
<div id="app"></div> | ||
<script> | ||
window.$docsify = { | ||
loadSidebar: true, | ||
subMaxLevel: 2, | ||
alias: { | ||
'/_sidebar.md': '/sidebar.md' | ||
}, | ||
name: 'Java-concurrency', | ||
repo: '' | ||
} | ||
</script> | ||
<script src="//unpkg.com/docsify/lib/docsify.min.js"></script> | ||
</body> | ||
</html> |
28 changes: 28 additions & 0 deletions
sidebar.md
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
* [首页](/) | ||
* [1.并发编程的优缺点](01.并发编程的优缺点/并发编程的优缺点.md) | ||
* [2.线程的状态转换以及基本操作](02.线程的状态转换以及基本操作/线程状态转换以及基本操作.md) | ||
* [3.java内存模型以及happens-before规则](03.java内存模型以及happens-before规则/Java内存模型以及happens-before.md) | ||
* [4.彻底理解synchronized](04.彻底理解synchronized/java关键字---synchronized.md) | ||
* [5.彻底理解volatile](05.彻底理解volatile/java关键字---volatile.md) | ||
* [6.你以为你真的了解final吗?](06.你以为你真的了解final吗?/java关键字--final.md) | ||
* [7.三大性质总结:原子性、可见性以及有序性](07.三大性质总结:原子性、可见性以及有序性/三大性质总结:原子性、可见性以及有序性.md) | ||
* [8.初识Lock与AbstractQueuedSynchronizer(AQS)](08.初识Lock与AbstractQueuedSynchronizer(AQS)/初识Lock与AbstractQueuedSynchronizer(AQS).md) | ||
* [9.深入理解AbstractQueuedSynchronizer(AQS)](09.深入理解AbstractQueuedSynchronizer(AQS)/深入理解AbstractQueuedSynchronizer(AQS).md) | ||
* [10.彻底理解ReentrantLock](10.彻底理解ReentrantLock/彻底理解ReentrantLock.md) | ||
* [11.深入理解读写锁ReentrantReadWriteLock](11.深入理解读写锁ReentrantReadWriteLock/深入理解读写锁ReentrantReadWriteLock.md) | ||
* [12.详解Condition的await和signal等待通知机制](12.详解Condition的await和signal等待通知机制/详解Condition的await和signal等待通知机制.md) | ||
* [13.LockSupport工具](13.LockSupport工具/LockSupport工具.md) | ||
* [14.并发容器之ConcurrentHashMapJDK1.8版本](14.并发容器之ConcurrentHashMap(JDK%201.8版本)/并发容器之ConcurrentHashMap(JDK%201.8版本).md) | ||
* [15.并发容器之ConcurrentLinkedQueue](15.并发容器之ConcurrentLinkedQueue/并发容器之ConcurrentLinkedQueue.md) | ||
* [16.并发容器之CopyOnWriteArrayList](16.并发容器之CopyOnWriteArrayList/并发容器之CopyOnWriteArrayList.md) | ||
* [17.并发容器之ThreadLocal](17.并发容器之ThreadLocal/并发容器之ThreadLocal.md) | ||
* [18.一篇文章,从源码深入详解ThreadLocal内存泄漏问题](18.一篇文章,从源码深入详解ThreadLocal内存泄漏问题/一篇文章,从源码深入详解ThreadLocal内存泄漏问题.md) | ||
* [19.并发容器之BlockingQueue](19.并发容器之BlockingQueue/并发容器之BlockingQueue.md) | ||
* [20.并发容器之ArrayBlockingQueue和LinkedBlockingQueue实现原理详解](20.并发容器之ArrayBlockingQueue和LinkedBlockingQueue实现原理详解/并发容器之ArrayBlockingQueue和LinkedBlockingQueue实现原理详解.md) | ||
* [21.线程池ThreadPoolExecutor实现原理](21.线程池ThreadPoolExecutor实现原理/线程池ThreadPoolExecutor实现原理.md) | ||
* [22.线程池之ScheduledThreadPoolExecutor](22.线程池之ScheduledThreadPoolExecutor/线程池之ScheduledThreadPoolExecutor.md) | ||
* [23.FutureTask基本操作总结](23.FutureTask基本操作总结/FutureTask基本操作总结.md) | ||
* [24.Java中atomic包中的原子操作类总结](24.Java中atomic包中的原子操作类总结/Java中atomic包中的原子操作类总结.md) | ||
* [25.大白话说java并发工具类-CountDownLatch,CyclicBarrier](25.大白话说java并发工具类-CountDownLatch,CyclicBarrier/大白话说java并发工具类-CountDownLatch,CyclicBarrier.md) | ||
* [26.大白话说java并发工具类-Semaphore,Exchanger](26.大白话说java并发工具类-Semaphore,Exchanger/大白话说java并发工具类-Semaphore,Exchanger.md) | ||
* [27.一篇文章,让你彻底弄懂生产者--消费者问题](27.一篇文章,让你彻底弄懂生产者--消费者问题/一篇文章,让你彻底弄懂生产者--消费者问题.md) |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.