TMyObject=class Private Myvalue:integer; Procedure SetMyvalue(avalue:integer); Public Property value:integer read Myvalue write SetMyvalue; end; Proce...
分类:
其他好文 时间:
2015-02-15 14:59:17
阅读次数:
90
2015年1月31日,作为KEYNOTE演讲嘉宾,我和来自全国各地的开发人员分享了作为一名MVP的一些体会。Keynote – Open Source, Free Tools and Cross PlatformKeynote – Open Source, Free Tools and Cross ...
分类:
其他好文 时间:
2015-02-15 13:27:31
阅读次数:
214
在清理前内存使用情况? free -m 用以下命令清理内存 echo 1 > /proc/sys/vm/drop_caches 清理后内存使用情况再用以下命令看看。? free –m 多出很多内存了吧。 查看内存条数命令: dmidecode |grep -A16 "Memo...
分类:
其他好文 时间:
2015-02-15 06:13:46
阅读次数:
178
FFMPEG是很强大的一套视频音频处理库,不过,强大的功能一般免不了复杂的实现,或者更加现实地说,“麻烦”的部署和使用流程关于“FFMPEG怎么部署”这事就放在另一篇文章啦,下面入正题。。编码encoder模块和解码decoder模块都有init初始化方法和资源free方法init初始化方法主要是进...
分类:
系统相关 时间:
2015-02-14 22:33:06
阅读次数:
325
第七章函数在调用前要先声明。new和delete可以用来分配内存和释放。虽然malloc和free也保留了,但不推荐使用。delete运算符使用的一般格式为delete[]指针变量有时需要使几种不同类型的变量存放到同一段内存单元中,应使用union。声明的一般形式为:union类型名{成员表列};枚举..
分类:
编程语言 时间:
2015-02-14 01:19:49
阅读次数:
254
3DSlicer, a free open source software for visualization and medical image computingAcetoneISO:镜像文件挂载软件Adobe Photoshop Album, an image organizing appli...
分类:
其他好文 时间:
2015-02-14 01:04:53
阅读次数:
383
android在使用SQLiteDatabase插入数据时,抛出如下异常:
W/CursorWindow(25503): Window is full: requested allocation 5583269 bytes, free space 2096639 bytes, window size 2097152 bytes
解决方法:数据库表字段值如果超过2M,那么就把值存在文件中,然后把文件路径存在此字段中。...
第三步,查看需要删除的disk的路径
select name,total_mb/1024,free_mb/1024,path from v$asm_disk;
DGDATA_0003 556 1347.5625 /dev/raw/raw9
第四步,查看需要删除的disk的使用情况:
select name,total_mb/1024,free_mb/1024 from v$asm_disk_stat
DGDATA_0003 1556 1347.5625
第五步,查看...
分类:
数据库 时间:
2015-02-13 16:36:48
阅读次数:
168
Time Limit: 5000 MS Memory Limit: 65536 K
Description
A positive integer is said to be squarefree if it is divisible by no perfect square larger than 1.
For example, the first few squarefree ...
分类:
其他好文 时间:
2015-02-13 13:25:35
阅读次数:
184
在linux的top命令里的cpu信息是什么意思呢?Cpu(s): 62.1% us, 15.9% sy,0.1% ni, 19.4% id,2.0% wa,0.1% hi,0.4% siMem: 8247956k total,8232004k used,15952k free,205240k bu...
分类:
其他好文 时间:
2015-02-13 09:37:48
阅读次数:
229