-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
827 lines (477 loc) · 27.8 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Lrq's blogs</title>
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<meta name="theme-color" content="#3F51B5">
<meta name="keywords" content="">
<meta property="og:type" content="website">
<meta property="og:title" content="Lrq's blogs">
<meta property="og:url" content="http://yoursite.com/index.html">
<meta property="og:site_name" content="Lrq's blogs">
<meta property="og:locale" content="en_US">
<meta property="article:author" content="Lrq">
<meta name="twitter:card" content="summary">
<link rel="alternate" type="application/atom+xml" title="Lrq's blogs" href="/atom.xml">
<link rel="shortcut icon" href="/favicon.ico">
<link rel="stylesheet" href="//unpkg.com/hexo-theme-material-indigo@latest/css/style.css">
<script>window.lazyScripts=[]</script>
<!-- custom head -->
<meta name="generator" content="Hexo 4.2.0"></head>
<body>
<div id="loading" class="active"></div>
<aside id="menu" >
<div class="inner flex-row-vertical">
<a href="javascript:;" class="header-icon waves-effect waves-circle waves-light" id="menu-off">
<i class="icon icon-lg icon-close"></i>
</a>
<div class="brand-wrap" style="background-image:url(/img/brand.jpg)">
<div class="brand">
<a href="/" class="avatar waves-effect waves-circle waves-light">
<img src="/img/avatar.jpg">
</a>
<hgroup class="introduce">
<h5 class="nickname">Lrq</h5>
<a href="mailto:lrq_bjut@163.com" title="lrq_bjut@163.com" class="mail">lrq_bjut@163.com</a>
</hgroup>
</div>
</div>
<div class="scroll-wrap flex-col">
<ul class="nav">
<li class="waves-block waves-effect active">
<a href="/" >
<i class="icon icon-lg icon-home"></i>
主页
</a>
</li>
<li class="waves-block waves-effect">
<a href="/archives" >
<i class="icon icon-lg icon-archives"></i>
Archives
</a>
</li>
<li class="waves-block waves-effect">
<a href="/tags" >
<i class="icon icon-lg icon-tags"></i>
Tags
</a>
</li>
<li class="waves-block waves-effect">
<a href="/categories" >
<i class="icon icon-lg icon-th-list"></i>
Categories
</a>
</li>
<li class="waves-block waves-effect">
<a href="https://github.com/lrq99" target="_blank" >
<i class="icon icon-lg icon-github"></i>
Github
</a>
</li>
</ul>
</div>
</div>
</aside>
<main id="main">
<header class="top-header" id="header">
<div class="flex-row">
<a href="javascript:;" class="header-icon waves-effect waves-circle waves-light on" id="menu-toggle">
<i class="icon icon-lg icon-navicon"></i>
</a>
<div class="flex-col header-title ellipsis">Lrq's blogs</div>
<div class="search-wrap" id="search-wrap">
<a href="javascript:;" class="header-icon waves-effect waves-circle waves-light" id="back">
<i class="icon icon-lg icon-chevron-left"></i>
</a>
<input type="text" id="key" class="search-input" autocomplete="off" placeholder="Search">
<a href="javascript:;" class="header-icon waves-effect waves-circle waves-light" id="search">
<i class="icon icon-lg icon-search"></i>
</a>
</div>
<a href="javascript:;" class="header-icon waves-effect waves-circle waves-light" id="menuShare">
<i class="icon icon-lg icon-share-alt"></i>
</a>
</div>
</header>
<header class="content-header index-header">
<div class="container fade-scale">
<h1 class="title">Lrq's blogs</h1>
<h5 class="subtitle">
</h5>
</div>
</header>
<div class="container body-wrap">
<ul class="post-list">
<li class="post-list-item fade">
<article id="post-DataCleaning(2)"
class="article-card article-type-post" itemprop="blogPost">
<div class="post-meta">
<time class="post-time" title="2020-02-17 14:29:27" datetime="2020-02-17T06:29:27.796Z" itemprop="datePublished">2020-02-17</time>
<ul class="article-category-list"><li class="article-category-list-item"><a class="article-category-list-link" href="/categories/Data-Science/">Data Science</a></li></ul>
</div>
<h3 class="post-title" itemprop="name">
<a class="post-title-link" href="/2020/02/17/DataCleaning(2)/">Data transformation pipeline - Data Cleaning(2)</a>
</h3>
<div class="post-content" id="post-content" itemprop="postContent">
Data Cleaning(2)Creating a deployable artifact The next job we need to do is to package our application after cleaning data. If my code consists of many modules, I must package them in the zip...
<a href="/2020/02/17/DataCleaning(2)/" class="post-more waves-effect waves-button">
Continue reading...
</a>
</div>
<div class="post-footer">
<ul class="article-tag-list" itemprop="keywords"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/PySpark/" rel="tag">PySpark</a></li></ul>
</div>
</article>
</li>
<li class="post-list-item fade">
<article id="post-DataCleaning"
class="article-card article-type-post" itemprop="blogPost">
<div class="post-meta">
<time class="post-time" title="2020-02-16 22:20:38" datetime="2020-02-16T14:20:38.112Z" itemprop="datePublished">2020-02-16</time>
<ul class="article-category-list"><li class="article-category-list-item"><a class="article-category-list-link" href="/categories/Data-Science/">Data Science</a></li></ul>
</div>
<h3 class="post-title" itemprop="name">
<a class="post-title-link" href="/2020/02/16/DataCleaning/">Data transformation pipeline - Data Cleaning(1)</a>
</h3>
<div class="post-content" id="post-content" itemprop="postContent">
Data Cleaning(1)Why we should clean data? Most data sources people work with are not ready for analytics. Hence, the second step in the data transformation pipeline is cleaning the data.
How t...
<a href="/2020/02/16/DataCleaning/" class="post-more waves-effect waves-button">
Continue reading...
</a>
</div>
<div class="post-footer">
<ul class="article-tag-list" itemprop="keywords"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/PySpark/" rel="tag">PySpark</a></li></ul>
</div>
</article>
</li>
<li class="post-list-item fade">
<article id="post-一些递归算法的总结"
class="article-card article-type-post" itemprop="blogPost">
<div class="post-meta">
<time class="post-time" title="2020-02-07 22:42:55" datetime="2020-02-07T14:42:55.941Z" itemprop="datePublished">2020-02-07</time>
<ul class="article-category-list"><li class="article-category-list-item"><a class="article-category-list-link" href="/categories/Algorithm/">Algorithm</a></li></ul>
</div>
<h3 class="post-title" itemprop="name">
<a class="post-title-link" href="/2020/02/07/%E4%B8%80%E4%BA%9B%E9%80%92%E5%BD%92%E7%AE%97%E6%B3%95%E7%9A%84%E6%80%BB%E7%BB%93/">一些关于递归算法的总结</a>
</h3>
<div class="post-content" id="post-content" itemprop="postContent">
简述  递归是函数调用函数本身,并且每一次都做相同的动作。因此在看待递归时,只需要将子问题解决(解决子问题的时候需要使用到当前解),合并到当前的解中,然后去递归的求解下一个子问题,直到最大的问题的解被解决。  下面两个问题虽然都和反转链表有关,虽然我都使用了递归求解,但是仔细品味,两者递归的使用,虽然都是正确的,但是它们表达出的思想是不同的。
第一题:...
<a href="/2020/02/07/%E4%B8%80%E4%BA%9B%E9%80%92%E5%BD%92%E7%AE%97%E6%B3%95%E7%9A%84%E6%80%BB%E7%BB%93/" class="post-more waves-effect waves-button">
Continue reading...
</a>
</div>
<div class="post-footer">
<ul class="article-tag-list" itemprop="keywords"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/recursion/" rel="tag">recursion</a></li></ul>
</div>
</article>
</li>
<li class="post-list-item fade">
<article id="post-leetcode_最长回文子串"
class="article-card article-type-post" itemprop="blogPost">
<div class="post-meta">
<time class="post-time" title="2020-02-05 12:17:22" datetime="2020-02-05T04:17:22.469Z" itemprop="datePublished">2020-02-05</time>
<ul class="article-category-list"><li class="article-category-list-item"><a class="article-category-list-link" href="/categories/Algorithm/">Algorithm</a></li></ul>
</div>
<h3 class="post-title" itemprop="name">
<a class="post-title-link" href="/2020/02/05/leetcode_%E6%9C%80%E9%95%BF%E5%9B%9E%E6%96%87%E5%AD%90%E4%B8%B2/">最长回文子串</a>
</h3>
<div class="post-content" id="post-content" itemprop="postContent">
题目描述给定一个字符串 s,找到 s 中最长的回文子串。你可以假设 s 的最大长度为 1000。例如123输入: "babad"输出: "bab"注意: "aba" 也是一个有效答案。12输入: "cbbd"输出: "bb"
实现思路方法一:暴力算法枚举所有字串,花费为 $ O(n^2) $ ...
<a href="/2020/02/05/leetcode_%E6%9C%80%E9%95%BF%E5%9B%9E%E6%96%87%E5%AD%90%E4%B8%B2/" class="post-more waves-effect waves-button">
Continue reading...
</a>
</div>
<div class="post-footer">
<ul class="article-tag-list" itemprop="keywords"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/dp/" rel="tag">dp</a></li><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/%E4%B8%AD%E5%BF%83%E6%89%A9%E5%B1%95-Manacher%EF%BC%88%E6%9A%82%E6%9C%AA%E5%AE%9E%E7%8E%B0%EF%BC%89/" rel="tag">中心扩展/Manacher(暂未实现)</a></li></ul>
</div>
</article>
</li>
<li class="post-list-item fade">
<article id="post-leetcode_无重复字符的最长子串"
class="article-card article-type-post" itemprop="blogPost">
<div class="post-meta">
<time class="post-time" title="2020-02-04 14:17:54" datetime="2020-02-04T06:17:54.951Z" itemprop="datePublished">2020-02-04</time>
<ul class="article-category-list"><li class="article-category-list-item"><a class="article-category-list-link" href="/categories/Algorithm/">Algorithm</a></li></ul>
</div>
<h3 class="post-title" itemprop="name">
<a class="post-title-link" href="/2020/02/04/leetcode_%E6%97%A0%E9%87%8D%E5%A4%8D%E5%AD%97%E7%AC%A6%E7%9A%84%E6%9C%80%E9%95%BF%E5%AD%90%E4%B8%B2/">无重复字符的最长子串</a>
</h3>
<div class="post-content" id="post-content" itemprop="postContent">
题目描述给定一个字符串,请你找出其中不含有重复字符的 最长子串 的长度[注]子串是连续的,子序列是可以不连续的
例如:123输入: "abcabcbb"输出: 3 解释: 因为无重复字符的最长子串是 "abc",所以其长度为 3。1234输入: "pwwkew"输出: 3解释: 因为无重复字符的最长子串是 "wke&quo...
<a href="/2020/02/04/leetcode_%E6%97%A0%E9%87%8D%E5%A4%8D%E5%AD%97%E7%AC%A6%E7%9A%84%E6%9C%80%E9%95%BF%E5%AD%90%E4%B8%B2/" class="post-more waves-effect waves-button">
Continue reading...
</a>
</div>
<div class="post-footer">
<ul class="article-tag-list" itemprop="keywords"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/Sliding-Window/" rel="tag">Sliding Window</a></li></ul>
</div>
</article>
</li>
<li class="post-list-item fade">
<article id="post-JVM垃圾收集器小结(一)"
class="article-card article-type-post" itemprop="blogPost">
<div class="post-meta">
<time class="post-time" title="2020-01-23 16:08:51" datetime="2020-01-23T08:08:51.936Z" itemprop="datePublished">2020-01-23</time>
<ul class="article-category-list"><li class="article-category-list-item"><a class="article-category-list-link" href="/categories/Java%E5%AD%A6%E4%B9%A0/">Java学习</a></li></ul>
</div>
<h3 class="post-title" itemprop="name">
<a class="post-title-link" href="/2020/01/23/JVM%E5%9E%83%E5%9C%BE%E6%94%B6%E9%9B%86%E5%99%A8%E5%B0%8F%E7%BB%93%EF%BC%88%E4%B8%80%EF%BC%89/">JVM垃圾收集器小结(一)</a>
</h3>
<div class="post-content" id="post-content" itemprop="postContent">
JVM垃圾收集器小结(一)一、可达性分析算法  在可达性分析算法中一个核心概念是 GC Root。  垃圾收集器通过从GC Root对象开始,根据引用关系,向下搜索,搜索过程所走过的路径称为“引用链”(Reference Chain)。如果某个对象到GC Root是有引用链相连的,那么这个对象就是可达的。  在垃圾收集执行过程中,第...
<a href="/2020/01/23/JVM%E5%9E%83%E5%9C%BE%E6%94%B6%E9%9B%86%E5%99%A8%E5%B0%8F%E7%BB%93%EF%BC%88%E4%B8%80%EF%BC%89/" class="post-more waves-effect waves-button">
Continue reading...
</a>
</div>
<div class="post-footer">
<ul class="article-tag-list" itemprop="keywords"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/JVM/" rel="tag">JVM</a></li><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/%E5%9E%83%E5%9C%BE%E6%94%B6%E9%9B%86%E5%99%A8/" rel="tag">垃圾收集器</a></li></ul>
</div>
</article>
</li>
<li class="post-list-item fade">
<article id="post-构造器调用顺序"
class="article-card article-type-post" itemprop="blogPost">
<div class="post-meta">
<time class="post-time" title="2020-01-22 14:30:11" datetime="2020-01-22T06:30:11.799Z" itemprop="datePublished">2020-01-22</time>
<ul class="article-category-list"><li class="article-category-list-item"><a class="article-category-list-link" href="/categories/Java%E5%AD%A6%E4%B9%A0/">Java学习</a></li></ul>
</div>
<h3 class="post-title" itemprop="name">
<a class="post-title-link" href="/2020/01/22/%E6%9E%84%E9%80%A0%E5%99%A8%E8%B0%83%E7%94%A8%E9%A1%BA%E5%BA%8F/">构造器调用顺序</a>
</h3>
<div class="post-content" id="post-content" itemprop="postContent">
Java构造器调用顺序继承关系图:Meal->Lunch->PortableLunch->SandWich
递归的调用基类构造器。首先构造继承结构中的根类,然后是下一层导出类,直到当前类
按声明顺序调用成员的初始化方法
调用导出类构造器的主体123456789101112131415161718192021222324252627282930313233343536373...
<a href="/2020/01/22/%E6%9E%84%E9%80%A0%E5%99%A8%E8%B0%83%E7%94%A8%E9%A1%BA%E5%BA%8F/" class="post-more waves-effect waves-button">
Continue reading...
</a>
</div>
<div class="post-footer">
<ul class="article-tag-list" itemprop="keywords"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/JavaSE/" rel="tag">JavaSE</a></li></ul>
</div>
</article>
</li>
<li class="post-list-item fade">
<article id="post-mysql索引原理"
class="article-card article-type-post" itemprop="blogPost">
<div class="post-meta">
<time class="post-time" title="2020-01-18 22:33:23" datetime="2020-01-18T14:33:23.906Z" itemprop="datePublished">2020-01-18</time>
<ul class="article-category-list"><li class="article-category-list-item"><a class="article-category-list-link" href="/categories/MySQL/">MySQL</a></li></ul>
</div>
<h3 class="post-title" itemprop="name">
<a class="post-title-link" href="/2020/01/18/mysql%E7%B4%A2%E5%BC%95%E5%8E%9F%E7%90%86/">MySQL索引及底层实现</a>
</h3>
<div class="post-content" id="post-content" itemprop="postContent">
MySQL索引及底层实现一、什么是索引
“A database index is a data structure that improves the speed of operations in a table”–MySQL Tutorial
将以上索引定义翻译成中文,即 索引是用来提高操作数据表速度的数据结构
二、为什么要使用索引  在对数据表进行查询时,若所查询的...
<a href="/2020/01/18/mysql%E7%B4%A2%E5%BC%95%E5%8E%9F%E7%90%86/" class="post-more waves-effect waves-button">
Continue reading...
</a>
</div>
<div class="post-footer">
<ul class="article-tag-list" itemprop="keywords"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/MySQL%E7%B4%A2%E5%BC%95/" rel="tag">MySQL索引</a></li></ul>
</div>
</article>
</li>
<li class="post-list-item fade">
<article id="post-JDK动态代理"
class="article-card article-type-post" itemprop="blogPost">
<div class="post-meta">
<time class="post-time" title="2020-01-16 11:44:02" datetime="2020-01-16T03:44:02.283Z" itemprop="datePublished">2020-01-16</time>
<ul class="article-category-list"><li class="article-category-list-item"><a class="article-category-list-link" href="/categories/Java%E5%AD%A6%E4%B9%A0/">Java学习</a></li></ul>
</div>
<h3 class="post-title" itemprop="name">
<a class="post-title-link" href="/2020/01/16/JDK%E5%8A%A8%E6%80%81%E4%BB%A3%E7%90%86/">JDK动态代理实现与原理</a>
</h3>
<div class="post-content" id="post-content" itemprop="postContent">
JDK动态代理实现与原理一、代理模式  代理模式(Proxy Pattern) 是程序设计中的一种设计模式,结构如下图。代理类为委托(实现)类提供代理,以控制对委托类对象的访问。代理类负责为委托类预处理消息,过滤并转发消息,以及进行消息被委托类执行后的后续处理。  为了保持行为的一致,代理类和委托类通常实现同样的接口,通过代理类可以对委托类对象进行访问...
<a href="/2020/01/16/JDK%E5%8A%A8%E6%80%81%E4%BB%A3%E7%90%86/" class="post-more waves-effect waves-button">
Continue reading...
</a>
</div>
<div class="post-footer">
<ul class="article-tag-list" itemprop="keywords"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/Spring-AOP%E5%AE%9E%E7%8E%B0%E5%8E%9F%E7%90%86/" rel="tag">Spring AOP实现原理</a></li><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/jdk%E5%8A%A8%E6%80%81%E4%BB%A3%E7%90%86/" rel="tag">jdk动态代理</a></li><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/%E8%AE%BE%E8%AE%A1%E6%A8%A1%E5%BC%8F/" rel="tag">设计模式</a></li></ul>
</div>
</article>
</li>
<li class="post-list-item fade">
<article id="post-JVM自动内存管理day02"
class="article-card article-type-post" itemprop="blogPost">
<div class="post-meta">
<time class="post-time" title="2020-01-12 00:12:03" datetime="2020-01-11T16:12:03.169Z" itemprop="datePublished">2020-01-12</time>
<ul class="article-category-list"><li class="article-category-list-item"><a class="article-category-list-link" href="/categories/Java%E5%AD%A6%E4%B9%A0/">Java学习</a></li></ul>
</div>
<h3 class="post-title" itemprop="name">
<a class="post-title-link" href="/2020/01/12/JVM%E8%87%AA%E5%8A%A8%E5%86%85%E5%AD%98%E7%AE%A1%E7%90%86day02/">Java内存区域与内存溢出异常day02</a>
</h3>
<div class="post-content" id="post-content" itemprop="postContent">
Java虚拟机——自动内存管理第二章 Java内存区域与内存溢出异常
2.3 HotSpot 虚拟机对象探秘2.3.1 对象的创建在JVM中,一个对象(普通JAVA对象)被创建过程如下:
当Java虚拟机遇到一条字节码new指令时,首先检查此参数是否能在常量池中定位到一个类的符号引用
检查符号引用代表的类是否已经被加载、解析和初始化过,若没有则执行类加载过程。
给新生对象在Java堆中分配...
<a href="/2020/01/12/JVM%E8%87%AA%E5%8A%A8%E5%86%85%E5%AD%98%E7%AE%A1%E7%90%86day02/" class="post-more waves-effect waves-button">
Continue reading...
</a>
</div>
<div class="post-footer">
<ul class="article-tag-list" itemprop="keywords"><li class="article-tag-list-item"><a class="article-tag-list-link" href="/tags/JVM/" rel="tag">JVM</a></li></ul>
</div>
</article>
</li>
</ul>
<nav id="page-nav">
<div class="inner">
<span class="page-number current">1</span><a class="page-number" href="/page/2/">2</a><a class="extend next" rel="next" href="/page/2/">下一页</a>
</div>
</nav>
</div>
<footer class="footer">
<div class="top">
<p>
<span id="busuanzi_container_site_uv" style='display:none'>
站点总访客数:<span id="busuanzi_value_site_uv"></span>
</span>
<span id="busuanzi_container_site_pv" style='display:none'>
站点总访问量:<span id="busuanzi_value_site_pv"></span>
</span>
</p>
<p>
<span><a href="/atom.xml" target="_blank" class="rss" title="rss"><i class="icon icon-lg icon-rss"></i></a></span>
<span>This blog is licensed under a <a rel="license noopener" href="https://creativecommons.org/licenses/by/4.0/" target="_blank">Creative Commons Attribution 4.0 International License</a>.</span>
</p>
</div>
<div class="bottom">
<p><span>Lrq © 2015 - 2020</span>
<span>
Power by <a href="http://hexo.io/" target="_blank">Hexo</a> Theme <a href="https://github.com/yscoder/hexo-theme-indigo" target="_blank">indigo</a>
</span>
</p>
</div>
</footer>
</main>
<div class="mask" id="mask"></div>
<a href="javascript:;" id="gotop" class="waves-effect waves-circle waves-light"><span class="icon icon-lg icon-chevron-up"></span></a>
<div class="global-share" id="globalShare">
<ul class="reset share-icons">
<li>
<a class="weibo share-sns" target="_blank" href="http://service.weibo.com/share/share.php?url=http://yoursite.com/&title=Lrq's blogs&pic=http://yoursite.com/img/avatar.jpg" data-title="微博">
<i class="icon icon-weibo"></i>
</a>
</li>
<li>
<a class="weixin share-sns wxFab" href="javascript:;" data-title="微信">
<i class="icon icon-weixin"></i>
</a>
</li>
<li>
<a class="qq share-sns" target="_blank" href="http://connect.qq.com/widget/shareqq/index.html?url=http://yoursite.com/&title=Lrq's blogs&source=" data-title=" QQ">
<i class="icon icon-qq"></i>
</a>
</li>
<li>
<a class="facebook share-sns" target="_blank" href="https://www.facebook.com/sharer/sharer.php?u=http://yoursite.com/" data-title=" Facebook">
<i class="icon icon-facebook"></i>
</a>
</li>
<li>
<a class="twitter share-sns" target="_blank" href="https://twitter.com/intent/tweet?text=Lrq's blogs&url=http://yoursite.com/&via=http://yoursite.com" data-title=" Twitter">
<i class="icon icon-twitter"></i>
</a>
</li>
<li>
<a class="google share-sns" target="_blank" href="https://plus.google.com/share?url=http://yoursite.com/" data-title=" Google+">
<i class="icon icon-google-plus"></i>
</a>
</li>
</ul>
</div>
<div class="page-modal wx-share" id="wxShare">
<a class="close" href="javascript:;"><i class="icon icon-close"></i></a>
<p>扫一扫,分享到微信</p>
<img src="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAJYAAACWCAAAAAAZai4+AAABW0lEQVR42u3aQQ7DIAxE0dz/0qnUVaUUMjNOF7W/VxVKw8sCMIbjkON8x6r9M/T/PhCwYDVindu4PqO0XNv1vmDBmszaD2y9S/33jQEWLFjC6/QFGBYsWL9muV3CggVrz1KSZmWy0JPvx3J5WLBasCrLbSVRfri+BQvW37JOM9xlOwtYsKax9CLRfhRXtrhGBgELVlPWSpptSvVk+qYvWLBgRUWiynWEL++BBQuW0KUy1BXWsgUWrGEsN2nOQNJRij67wILVlKUUZCvLuVJsks5gYcFqyqqUbt0jE2PqgQVrMMu9fJAdcCqTCCxY01jZQUi2uS2d/MCC1ZpVuXCQlWul1BwWrGGsLOXdd6kv5PVEHBasTqxsUtDTZXcqgQVrMisr/WTbVOkZWLBgyYPcPcMxMgVYsGA9tL1Uik3Lz4AFayQrS5rd1NmYE2DBGsbKrgtkxFI1CxasnqwXXY7FbVPN83MAAAAASUVORK5CYII=" alt="微信分享二维码">
</div>
<script src="//cdn.bootcss.com/node-waves/0.7.4/waves.min.js"></script>
<script>
var BLOG = { ROOT: '/', SHARE: true, REWARD: false };
</script>
<script src="//unpkg.com/hexo-theme-material-indigo@latest/js/main.min.js"></script>
<div class="search-panel" id="search-panel">
<ul class="search-result" id="search-result"></ul>
</div>
<template id="search-tpl">
<li class="item">
<a href="{path}" class="waves-block waves-effect">
<div class="title ellipsis" title="{title}">{title}</div>
<div class="flex-row flex-middle">
<div class="tags ellipsis">
{tags}
</div>
<time class="flex-col time">{date}</time>
</div>
</a>
</li>
</template>
<script src="//unpkg.com/hexo-theme-material-indigo@latest/js/search.min.js" async></script>
<!-- mathjax config similar to math.stackexchange -->
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {
inlineMath: [ ['$','$'], ["\\(","\\)"] ],
processEscapes: true,
skipTags: ['script', 'noscript', 'style', 'textarea', 'pre', 'code']
}
});
MathJax.Hub.Queue(function() {
var all = MathJax.Hub.getAllJax(), i;
for(i=0; i < all.length; i += 1) {
all[i].SourceElement().parentNode.className += ' has-jax';
}
});
</script>
<script async src="//cdn.bootcss.com/mathjax/2.7.0/MathJax.js?config=TeX-MML-AM_CHTML" async></script>
<script async src="//busuanzi.ibruce.info/busuanzi/2.3/busuanzi.pure.mini.js"></script>
<script>
(function() {
var OriginTitile = document.title, titleTime;
document.addEventListener('visibilitychange', function() {
if (document.hidden) {
document.title = 'Lrq's Blog';
clearTimeout(titleTime);
} else {
document.title = 'Lrq's Blog';
titleTime = setTimeout(function() {
document.title = OriginTitile;
},2000);
}
});
})();
</script>
<script type="text/x-mathjax-config">
MathJax.Hub.Config({
tex2jax: {
inlineMath: [ ["$","$"], ["\\(","\\)"] ],
skipTags: ['script', 'noscript', 'style', 'textarea', 'pre', 'code'],
processEscapes: true
}
});
MathJax.Hub.Queue(function() {
var all = MathJax.Hub.getAllJax();
for (var i = 0; i < all.length; ++i)
all[i].SourceElement().parentNode.className += ' has-jax';
});
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.1/MathJax.js?config=TeX-MML-AM_CHTML"></script>
<!--
<script src="http://cdn.mathjax.org/mathjax/latest/MathJax.js?config=TeX-AMS-MML_HTMLorMML"></script>
-->
</body>
</html>