黑马程序员技术交流社区

标题: char byte [打印本页]

作者: 惠晖    时间: 2012-11-29 14:20
标题: char byte
本帖最后由 惠晖 于 2012-11-29 20:01 编辑

FileReader fr= new FileReader("fox.txt");
char[]ch=new char[1024];
FileInputStream=new FileInputStream("fox.txt");
byte[]ch=new byte[1024];
为什么一个用char 一个用byte啊。。。。。。。。。。糊涂了
作者: 邱峁    时间: 2012-11-29 14:42
FileReader fr= new FileReader("fox.txt");
char[]ch=new char[1024];
是字符流
FileInputStream=new FileInputStream("fox.txt");
byte[]ch=new byte[1024];
是字节流


作者: 王阳    时间: 2012-11-29 19:53
因为一个是字节流,一个是字符流,对应的当然是char和byte了。




欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) 黑马程序员IT技术论坛 X3.2