码迷,mamicode.com
首页 > 编程语言 > 详细

Java基础知识强化之IO流笔记61:标准输入输出流的本质

时间:2015-10-12 18:39:34      阅读:149      评论:0      收藏:0      [点我收藏+]

标签:

1. 标准输入输出流

 System类中的两个成员变量:

      public static final InputStream in :"标准"输入流。

      public static final PrintStream out :"标准"输出流。

备注:

  InputStream is = System.in;

  PrintStream ps = System.out;

代码示例:

 1 package cn.itcast_04;
 2 
 3 import java.io.PrintStream;
 4 
 5 /*
 6  * 标准输入输出流
 7  * System类中的两个成员变量:
 8  *        public static final InputStream in “标准”输入流。
 9  *         public static final PrintStream out “标准”输出流。
10  * 
11  *         InputStream is = System.in;
12  *         PrintStream ps = System.out;
13  */
14 public class SystemOutDemo {
15     public static void main(String[] args) {
16         // 有这里的讲解我们就知道了,这个输出语句其本质是IO流操作,把数据输出到控制台
17         System.out.println("helloworld");
18 
19         // 获取标准输出流对象
20         PrintStream ps = System.out;
21         ps.println("helloworld");
22         
23         ps.println();
24         // ps.print();//这个方法不存在
25         
26         // System.out.println();
27         // System.out.print();
28     }
29 }

 

Java基础知识强化之IO流笔记61:标准输入输出流的本质

标签:

原文地址:http://www.cnblogs.com/hebao0514/p/4872146.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!