b代表的是索引还是什么?
我这样理解的,数组里面最后一个的索引是-1,所以读到-1就结束了,可是不知道为什么又转换成16进制了,b输出来到底是什么内容?
我这样理解的,数组里面最后一个的索引是-1,所以读到-1就结束了,可是不知道为什么又转换成16进制了,b输出来到底是什么内容?
2018-08-26
/**
* Reads a byte of data from this input stream. This method blocks
* if no input is yet available.
*
* @return the next byte of data, or <code>-1</code> if the end of the
* file is reached.
* @exception IOException if an I/O error occurs.
*/
public int read() throws IOException {
return read0();
}
说的很清楚,the next byte of data, or <code>-1</code> if the end of the
* file is reached.没有值是-1,读的是里面的数据,不是索引
举报