当前所在位置:珠峰网资料 >> 计算机 >> 计算机等级考试 >> 正文
关于JAVA中回车符的认识
发布时间:2010/7/9 10:38:59 来源:城市学习网 编辑:ziteng
  Java代码
  1.
  2./**
  3. * 测试回车换行符:\r\n
  4. * TestEnterWrap
  5. * Author:广凌风
  6. * Jul 8, 2010  9:25:34 AM
  7. */
  8.public class TestEnterWrap {
  9.
  10.    /**
  11.     * TestEnterWrap.main()
  12.     * @param args
  13.     * @return void
  14.     * Author:Junliang Lin
  15.     * Jul 8, 2010 9:25:12 AM
  16.     */ [NextPage]   17.    public static void main(String[] args) throws Exception{
  18.        System.out.print("Input a char:");
  19.
  20.        char ch = (char)System.in.read();
  21.
  22.        System.out.println("hello" + ch + "AB");
  23.
  24.
  25.
  26.    }
  27.
  28.}
  编译并运行这个程序。
  (1)在DOS下运行,输入字符“a”,命令行窗口打印输出的结果: helloaAB。
  (2)在DOS下运行,直接按下回车键,在命令行窗口打印输出的结果:ABllo。
  解释如下:
  读取键盘输入的一个字符时,我们在键盘上按一下回车键,实际上读取到的是两个字符,即“\r”和“\n”。字符“\r”表示回车,即光标回到当前行的行首而不换行;字符“\n”表示换行,即光标移到当前行的下一行行首。
  按一下回车键,System.in.read()读取到字符“\r”,当执行到下面的程序代码时:
  System.out.println("hello" + ch + "AB");
  打印字符串“hello”后,接着打印输出字符“\r”,这时,光标移到字符串“hello”所在当前行的行首,由于没有字符“\n”,不会换到下一行,再继续打印字符串“AB”。这样,字符串“AB”就覆盖了字符串“hello”的前两个字符,所以,我们看到在命令行打印输出的是字符串 “ABllo”。
  在常用的IDE上运行该程序的时候,当我们在键盘上按一下回车键,实际上读取到的是两个字符,即“\r”和“\n”。
  在eclipse下运行的结果为:
  hello
  AB
广告合作:400-664-0084 全国热线:400-664-0084
Copyright 2010 - 2017 www.my8848.com 珠峰网 粤ICP备15066211号
珠峰网 版权所有 All Rights Reserved