一、jmap -heap PIDusing parallel threads in the new generation. ##新生代采用的是并行线程处理方式using thread-local object allocation.Concurrent Mark-Sweep GC ##同步并行垃圾回...
分类:
其他好文 时间:
2015-10-31 00:21:09
阅读次数:
182
Shortcut:===============================================================================Edit/Undo Ctrl+ZEdit/Redo Shift+Ctrl+ZEdit/PL/SQL Beautifier C...
分类:
数据库 时间:
2015-10-29 19:49:06
阅读次数:
261
malloc函数(1)解释malloc函数作用 malloc的全称是memory allocation,中文叫动态内存分配。 malloc函数是想系统申请分配指定size个字节的内存空间。malloc的返回类型是void*类型。void*表示为确定类型的指针。C/C++规定void*类型可以强制.....
分类:
编程语言 时间:
2015-10-26 20:28:22
阅读次数:
204
本文是介绍MySQL数据库InnoDB存储引擎重做日志漫游00 – Undo LogUndo Log 是为了实现事务的原子性,在MySQL数据库InnoDB存储引擎中,还用Undo Log来实现多版本并发控制(简称:MVCC)。- 事务的原子性(Atomicity)事务中的所有操作,要么全部完成,要...
分类:
数据库 时间:
2015-10-26 12:16:04
阅读次数:
213
第一题:数组#include
const int MAXSIZE = 20;
class List{
public:
List()
{
arr = new int[MAXSIZE]; //Allocation the space
length = 0; //the length of current array
cout<<...
分类:
其他好文 时间:
2015-10-25 12:19:25
阅读次数:
175
2D Array's memory allocation
分类:
编程语言 时间:
2015-10-24 21:57:09
阅读次数:
190
1. malloc()函数 1.1 malloc的全称是memory allocation,中文叫动态内存分配。 原型:extern void *malloc(unsigned int num_bytes); 说明:分配长度为num_bytes字节的内存块。如果分配成功则返回指向被...
分类:
其他好文 时间:
2015-10-23 13:40:31
阅读次数:
200
一、内存泄露Dump导出方法1.1、android项目下的内存泄露记录方法1.1.1 内存泄漏的排查方法Dalvik Debug Monitor Server (DDMS)是ADT插件的一部分,其中有两项功能可用于内存检查:·heap查看堆的分配情况·allocation tracker跟踪内存分配...
分类:
其他好文 时间:
2015-10-22 16:59:44
阅读次数:
307
//js部分? var editor; KindEditor.ready(function(K) { editor = K.create(‘#description‘, { minWidth:480, minHeight:300, items:["undo", "redo","justifyleft","justifycenter","justifyright", ? ? ? ...
分类:
其他好文 时间:
2015-10-21 10:56:11
阅读次数:
248
INotifyPropertyChanged Undo/redo Code contracts (preconditions) Logging Transaction handling Exception handling Thread di...
分类:
其他好文 时间:
2015-10-18 12:35:43
阅读次数:
134