java
笑码天下
这个作者很懒,什么都没留下…
展开
-
byte,int互转
bytes to intpublic static int bytesToInt(byte[] intByte) { int fromByte = 0; for (int i = 0; i < 2; i++) { int n = (intByte[i] < 0 ? (int)intByte[i] + 256 : (int)intByte[i]) << (8 * i); fromByte += n;转载 2014-01-16 21:10:07 · 446 阅读 · 0 评论 -
java容器
ArrayList,对象加入之后大都是为了取出,而不会长做删除或插入的动作,则使用ArrayList效率会更加好,但是经常在容器里面做删除添加动作,则使用LinkList会更加好(该类是利用链表实现的),故增加了象addFirst()、addLast()、getFirst()、getLast()、removeFirst()、removeFast()等,这样适合实现堆栈和队列。 二、Set接口 ...原创 2012-09-03 00:26:39 · 90 阅读 · 0 评论