Skip to content

pessonljxpd/Blog

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Blog

基于 GitHub Pages 搭建的极简博客,所有操作都可以直接通过浏览器完成。

添加文章

_post 目录下添加形如 2014-10-26-title.md 的文章,用 markdown 格式 撰写博客。

例如:

---
layout: post
title: Java 中的并发
comments: true
category: 技术
---


## 如何创建一个线程

按 Java 语言规范中的说法,创建线程只有一种方式,就是创建一个 Thread 对象。而从 HotSpot 虚拟机的角度看,创建一个虚拟机线程
有两种方式,一种是创建 Thread 对象,另一种是创建 一个本地线程,加入到虚拟机线程中。

...

其中 layout 表示布局,不用改变,title 表示文章题目,comments 表示是否要开户评论。

感谢

Thanks to authors of the repository:

Thanks to authors of the themes:

All the themes are intergrated in the blog template, with some modifies.

About

Blog templates based on GitHub Pages

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • CSS 49.4%
  • HTML 44.2%
  • JavaScript 6.4%