上一篇讲了ruby中的可调用对象proc和lambda,他们都是块转换成的对象.ruby中的可调用对象还有方法.通过使用method方法,并且以方法名作为参数(字符串或者符号),就可以得到一个方法对象. 如下: class C def talk p "hello world" end end c = C.new meth = c.method :talk meth.call 输出: "hello world" 类C有个实例方法talk.类C的实例c调用方法metho
方法1:A a=new test().new A(); 内部类对象通过外部类的实例对象调用其内部类构造方法产生,如下: public class test{ class A{ void fA(){ System.out.println("we are students"); } } public static void main(String args[]){ System.out.println("Hello, 欢迎学习JAVA"); A a=new test()
# 看题目是不是很绕,这个我也不知道怎么才能更简单的表达了... # 先看代码: public class Common { public static void main(String[] args) { Sub sub = new Sub(); sub.testSub(); } } class Parent { protected boolean test() { throw new RuntimeException(); } protected void testParent() { if