这个警告是什么意思?有什么办法可以避免这个警告?我试图从这里的编译器代码中理解消息,但我不能。
frege> native sysin "java.lang.System.in" :: InputStream
native function sysin :: InputStream
3: note that the java expression
java.lang.System.in is supposed to be
constant.
我也尝试了下面的代码,但得到了同样的警告:
frege> native sysin "java.lang.System.in" :: MutableIO InputStream
native function sysin :: MutableIO InputStream
3: note that the java expression
java.lang.System.in is supposed to be
constant.