http://grepcode.com/file/repository.grepcode.com/java/root/jdk/openjdk/6-b14/java/lang/System.java" rel="nofollow"\\code>System 类, in
, out
和 。 这些字段被宣布为静态字段。
public final static InputStream in = nullInputStream();
http://grepcode.com/file/repository.grepcode.com/java/root/jdk/openjdk/6-b14/java/lang/System.java" rel="nofollow"\\code>System 类, in
, out
和 。 这些字段被宣布为静态字段。
public final static InputStream in = nullInputStream();
源代码有以下评论:
/**
* The following two methods exist because in, out, and err must be
* initialized to null. The compiler, however, cannot be permitted to
* inline access to them, since they are later set to more sensible values
* by initializeSystemClass().
*/
简言之,由于 System. in
是一个 stistic final
变量,如果设置为 null
,则编纂者将把它视为常数,并将其他类别中所有提到 System. in
的文字替换为 null
(内衬意指什么) 。这显然将使一切无法运行。一旦系统初始化,某些本地代码必须用来替换此 System. in
最终值(通常永远不应更改) 。
恢复:它用来避免在这一非常特殊的情况下不应进行的编译优化,因为 System.in 是最后一个可以更改的字段, 通常不可能更改 。
您错了 < 强/ 强 > 。 强/ 强 >
在 Java 源代码中, 以
public final static InputStream in = null;
否
public final static InputStream in = nullInputStream();
您可参考 System
class < a href=" http://www.docjar.com/html/api/java/lang/System.java.html" rel="nofollow" 类的源代码。
Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...
Check this, List<String> list = new ArrayList<String>(); for (int i = 0; i < 10000; i++) { String value = (""+UUID.randomUUID().getLeastSignificantBits()).substring(3, ...
I am in the middle of solving a problem where I think it s best suited for a decorator and a state pattern. The high level setting is something like a sandwich maker and dispenser, where I have a set ...
I have been trying to execute a MS SQL Server stored procedure via JDBC today and have been unsuccessful thus far. The stored procedure has 1 input and 1 output parameter. With every combination I ...
I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...
If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...
I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....
I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...