黑马程序员技术交流社区

标题: 疑惑 [打印本页]

作者: 马伟恒    时间: 2012-4-19 12:35
标题: 疑惑
import java.io.ByteArrayInputStream;
import java.io.ByteArrayOutputStream;
import java.io.IOException;
public class TestByteArray {
public static void main(String[] args) throws Exception{
  String s = "NI HAO BEIJING";
  ByteArrayInputStream bis = null;
  ByteArrayOutputStream bos = null;
  
  bis = new ByteArrayInputStream(s.getBytes());
  bos = new ByteArrayOutputStream();
  
  int temp = 0;
  while((temp=bis.read())!=-1){
   char c = (char)temp;
   bos.write(Character.toLowerCase(c));
  }
  System.out.println( bos.toString());
     bis.close();
   bos.close();
   }
}


程序中的Character.toLowerCase(c)它的返回值是char类型但是bos.write()方法里面接收的是int类型的数据  为什么还可以这样写?





作者: 周四川    时间: 2012-4-19 13:07
  1. package com.heima.test;

  2. public class test {

  3.         public static void main(String[] args) {

  4.                 char ch='A';
  5.                 int i=ch;
  6.                 System.out.println(i);
  7.         }
  8. }
复制代码
输出的结果是:
65
所以你的bos.write()方法接收一个由char类型自动转换成的int类型。
作者: 蒋亮    时间: 2012-4-19 13:55
bos.write(Character.toLowerCase(c));执行这行代码的时候,char类型会自动提升类型为int类型。




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