沉静月光

文章
5
资源
0
加入时间
2年10月21天

byte[]和InputStream的相互转换

1、byte[]转换为InputStreamInputStream sbs = new ByteArrayInputStream(byte[] buf);2、InputStream转换为InputStreambyte[]ByteArrayOutputStream swapStream = new ByteArrayOutputStream();byte[] buff = new byte[...

C++中iterator失效的问题

如果容器个数发生变化,很可能会引起先前定义的迭代器失效,从而出现野指针。