1. 程式人生 > >Markdown 編輯器 程式碼新增行數

Markdown 編輯器 程式碼新增行數

只需要 在程式碼兩端加上``` 即可 例如

```
	/**
	 * Creates an instance of {@code ReentrantLock}.
	 * This is equivalent to using {@code ReentrantLock(false)}.
     */
	public ReentrantLock() {
    	sync = new NonfairSync();
	}
```