nest.java
来自「JAVA 语言的函数式编程扩展」· Java 代码 · 共 18 行
JAVA
18 行
package nestpkg;/** This file is needed for test 'nest.scala'. It should * be compiled with javac and packaged into lib/nest.jar */public class nest { public static class best { public static class rest { public static rest test = new rest(); public static int x = 10; public int inc(int i) { return i + 1; } } }}
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?