摘要:
package test; public class staticAccess { public int age; public staticAccess grow() { age++; return this; } public static void info() { System.out.println("Simple info way"); } public static void main(String[] args) { staticAccess rt=new staticAccess(); rt.age=10; rt.grow() .grow() .grow( 阅读全文