摘要:
package com.chunzhi.Test06StaticMethodReference; /* 通过类名引用静态成员方法 类名已经存在,静态成员变量方法也已经存在 就可以通过类名直接引用静态成员方法 */ public class Test01StaticMethodReference { 阅读全文
摘要:
package com.chunzhi.Test05ObjectMethodReference; /* 通过对象名引用成员方法,对象名:MethodRerObject;成员方法:printUpperCaseString 使用前提是对象名是已经存在的,成员方法也是存在的 就可以使用对象名来引用成员方法 阅读全文