学习了GC算法的相关概念之后, 我们将介绍在JVM中这些算法的具体实现。首先要记住的是, 大多数JVM都需要使用两种不同的GC算法 —— 一种用来清理年轻代, 另一种用来清理老年代。
我们可以选择JV...
分类:
编程语言 时间:
2017-02-06 11:18:23
阅读次数:
308
null http://blog.csdn.net/Two_Water/article/details/53891952 ...
分类:
编程语言 时间:
2017-02-05 20:42:44
阅读次数:
188
服务器程序,简单的说就是接收网络数据,处理后并返回结果数据。网络模块是其必不可少的部分,它本质上就是处理socket的五类事件:accept(客户端接入),connect(连接上服务器),read,write和error。socket接口有两种工作模式,一种是阻塞模式,一种是非阻塞模式。阻塞模式通常 ...
分类:
其他好文 时间:
2017-02-05 14:57:08
阅读次数:
120
Ocean Currents For a boat on a large body of water, strong currents can be dangerous, but with careful planning, they can be harnessed to help the boa ...
分类:
其他好文 时间:
2017-02-04 18:52:04
阅读次数:
253
A - Dasha and Stairs(water) 题意:能否找到一个区间内奇数偶数个数分别为a和b。被hack了一个0 0的数据点orz.... 1 #include <bits/stdc++.h> 2 using namespace std; 3 const int INF = 0x3f3f ...
分类:
其他好文 时间:
2017-02-02 12:06:28
阅读次数:
260
Given n non-negative integers representing an elevation map where the width of each bar is 1, compute how much water it is able to trap after raining. ...
分类:
移动开发 时间:
2017-01-29 10:44:24
阅读次数:
268
Given an m x n matrix of positive integers representing the height of each unit cell in a 2D elevation map, compute the volume of water it is able to ...
分类:
移动开发 时间:
2017-01-29 10:43:41
阅读次数:
307
明天就是春节了
预祝大家新春快乐 [ ]~( ̄▽ ̄)~*
天天饭局搞得我是身心疲惫= =
所以更新比较慢
今天想跟大家分享的就是这个大名鼎鼎的React框架简介React是这两年非常流行的框架...
分类:
其他好文 时间:
2017-01-27 11:06:34
阅读次数:
293
A - Holiday Of Equality(water) 题意:一共给你N个数,让你向上补数值,使得最终所有数值都相等,输出最少花费。 1 #include <bits/stdc++.h> 2 using namespace std; 3 typedef long long LL; 4 cons ...
分类:
其他好文 时间:
2017-01-24 22:58:21
阅读次数:
263
A - Petr and a calendar (water) 题意:在2017年,m是月份,d是这个月第一个是星期几。问这个月的日历需要多少行。 1 #include <bits/stdc++.h> 2 using namespace std; 3 const int INF = 0x3f3f3f ...
分类:
其他好文 时间:
2017-01-24 21:49:01
阅读次数:
255