一般遍历list的时候,我们习惯下面的写法,但这种写法有缺陷,不能及时释放iterator的内存
while循环遍历
Test
public void testIteratorWhile(){ArrayList<String> lists new ArrayList<>();lists.add("A");lists.add("B&…
I have PEM format file, How can verify the signature in Java, as I followed http://download.oracle.com/javase/tutorial/security/apisign/versig.html but found that Java doesnt support PEM解决方案You can read a certificate in a PEM file using BouncyCastles P…
惯例:首先标注定义,而后是形象的解释。 PDU(Protocol Data Unit)协议数据单元 SDU(service data unit)服务数据单元 什么是协议数据单元?就是按照协议的要求来传输的数据。什么是服务数据单元呢?就是指传输的数据。 这里有个例子&…
面试的时候,如果有笔试就会有一个笔试题就是:private,protected,public,internal的区别? 那么我每次都是简单的写下。今天具体的来总结下。 public :公共的。很好理解,就是所有人都可…