码迷,mamicode.com
首页 >  
搜索关键字:gabage collection    ( 6339个结果
java 集合基础1 学习笔记
集合特点: 1.用于存储对象的容器。 2.集合的长度是可变的。 3.集合中不可以存储基本数据类型值。Collection接口常见方法:1.添加 booleanadd(obj); booleanaddAll(Collection coll);2.删除 booleanremove(obj);...
分类:编程语言   时间:2014-05-09 19:15:18    阅读次数:320
java集合框架
集合:集合是一个可以存放任意类型,并且可以改变长度的数组,但是集合中不可存放基础数据类型,jdk1.5版本之后通过自动拆箱和自动拆包功能,基础数据类型转化为String类型才能存放进集合集合框架的分类:一,collection:特征是存放的是单一值元素collection的分类:List集合:特征是...
分类:编程语言   时间:2014-05-09 18:42:24    阅读次数:310
How to View, Modify and Recreate initrd.img
Question:HowdoIview,modifyandrecreatethenewinitrd.imgonUbuntu,Debian,CentOS,Fedora,Red-Hat,ArchLinux,orSUSEdistributions?1.HowToViewContentOfinitrd.imgfile?initrd.imgisingzipformat.Somoveinitrd.imgtoinitrd.gzasshownbelow.#cp/tftpboot/el5/initrd.img. #ls cd..
分类:其他好文   时间:2014-05-05 12:31:38    阅读次数:359
Linux Booting Process: A step by step tutorial for understanding Linux boot sequence
Oneofthemostremarkableachievementinthehistoryofmankindiscomputers.Anotheramazingfactaboutthisremarkableachievementcalledcomputersisthatitsacollectionofdifferentelectroniccomponents,andtheyworktogetherincoordinationtogiveyouameaningfuloutput.Weinourdaytodayl..
分类:系统相关   时间:2014-05-04 17:05:15    阅读次数:608
pat 1038 Smallest Number解题心得
题目描述:1038. Recover the Smallest Number (30)Given a collection of number segments, you are supposed to recover the smallest number from them. For examp...
分类:其他好文   时间:2014-05-04 10:49:34    阅读次数:308
Permutations II
Given a collection of numbers that might contain duplicates, return all possible unique permutations.For example,[1,1,2]have the following unique perm...
分类:其他好文   时间:2014-05-04 10:20:44    阅读次数:240
[codility]MaxProductOfThree
最近在学scala语言,scala代码如下: import scala.collection.JavaConversions._ import scala.util.control.Breaks._ object Solution { def solution(A: Array[Int]): Int = { // write your code in Scala 2.10...
分类:其他好文   时间:2014-05-04 09:42:56    阅读次数:372
[codility]Distinct
最近在学scala语言,scala代码如下: import scala.collection.JavaConversions._ object Solution { def solution(A: Array[Int]): Int = { // write your code in Scala 2.10 // using quick sort to so...
分类:其他好文   时间:2014-05-04 09:22:37    阅读次数:341
[codility]CountDiv
最近在学scala语言,scala代码如下: import scala.collection.JavaConversions._ object Solution { def solution(A: Int, B: Int, K: Int): Int = { // write your code in Scala 2.10 var cnt: Int = 0...
分类:其他好文   时间:2014-05-04 09:06:08    阅读次数:307
poj 1014 Dividing
Dividing Time Limit: 1000MS   Memory Limit: 10000K Total Submissions: 57229   Accepted: 14680 Description Marsha and Bill own a collection of marbles. They want to spli...
分类:其他好文   时间:2014-05-03 21:52:18    阅读次数:253
6339条   上一页 1 ... 630 631 632 633 634 下一页
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!