Java如何实际在屏幕上打印
作者:互联网
我是Java的新手,正在oracle的官方Java文档中学习Java.在Java文档提供的大多数程序示例中,system.out.println(…)语句用于在屏幕上打印文本或消息.还有一些其他方法,例如print(),printf()等用于在屏幕上书写.
我想知道这些方法实际上是如何工作的.我查看了这些方法的源代码并深入研究,发现终于在每个打印方法(直接或间接)中调用了write(char cbuf [],int off,int len)方法,该方法是抽象的.
因此,JVM如何在屏幕上打印/写入内容.据我说,这是JVM的内部工作. JVM搜索显示窗口并调用OS的系统命令,例如linux和Windows OS中的echo.
我是对的,如果不是,请解释这些方法的工作并纠正我.
解决方法:
查看OpenJDK的源代码,在java.lang.System:254处有一个方法似乎可以设置System.out PrintStream值,此方法将在以后的java.lang.System:1144处调用.
254: private static native void [More ...] setOut0(PrintStream out);
1144: setOut0(new PrintStream(new BufferedOutputStream(fdOut, 128), true));
fdOut是对在java.lang.System:1141处设置的FileOutputStream的引用,
1141: FileOutputStream fdOut = new FileOutputStream(FileDescriptor.out);
而且FileDescriptor.out是
handle to the standard output stream. Usually, this file descriptor is not used directly, but rather via the output stream known as
System.out
.
那么PrintStream如何处理诸如print()之类的方法? (您可能会看到我要去这里的地方.
在java.io.PrintStream:582-584是print(char c)方法,
582: public void print(char c) {
583: write(String.valueOf(c));
584: }
write()依次写入传递的值,并刷新传递给PrintStream()的输出流.
实现的其余部分是本机方法,根据定义,这些方法会根据平台和程序的调用而有所不同.它们可能是从控制台屏幕到打印机的任何东西,或者是轨道激光将输出燃烧到地球表面上.
除了幽默,我希望这有助于理解.
标签:printing,jvm,java 来源: https://codeday.me/bug/20191120/2046577.html