隐喻是一种思维方式,从源域映射到目标域,基于某种意象图式(image schema);通常源域是已知的、具体的事物,而目标域是未知的、抽象的事物

秦少游
欲见回肠,断尽金炉小篆香
柔情似水,佳期如梦

昔我往矣,杨柳依依;今我来思,雨雪霏霏

玉容寂寞泪阑干,梨花一枝春带雨——白居易
试问闲愁都几许?一川烟草,满城风絮,梅子黄时雨。

测试哈哈哈

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/**
* 根据order对User排序
*/
public class User { //此处无需实现Comparable接口
private String name;
private Integer order;
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public Integer getOrder() {
return order;
}
public void setOrder(Integer order) {
this.order = order;
}
}

文章分段
哈哈哈

Welcome to Hexo! This is your very first post. Check documentation for more info. If you get any problems when using Hexo, you can find the answer in troubleshooting or you can ask me on GitHub.

Quick Start

Create a new post

1
$ hexo new "My New Post"

More info: Writing

Run server

1
$ hexo server

More info: Server

Generate static files

1
$ hexo generate

More info: Generating

Deploy to remote sites

1
$ hexo deploy

More info: Deployment