aa

package aa; public class AA01 { public static void show(String s){ System.out.println(s); } public void test(){ AA01.show("test"); } public static void main(String[] args) { AA01 s = new AA01(); s.test(); } }
原文地址:https://www.cnblogs.com/wulianshang/p/5831172.html