⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 methodpointertest.java

📁 JAVA继承的例子
💻 JAVA
字号:
import java.lang.reflect.*;

public class MethodPointerTest
{
    public static void main(String[] args) throws Exception
    {
        Method square=MethodPointerTest.class.getMethod("square",double.class);
        Method sqrt=Math.class.getMethod("sqrt",double.class);
        
        printTable(1,10,10,square);
        printTable(1,10,10,sqrt);
    }
    
    public static double square(double x)
    {
        return x*x;
    }
    
    public static void printTable(double from,double to,int n,Method f)
    {
        System.out.println(f);
        
        double dx=(to-from)/(n-1);
        
        for(double x=from;x<=to;x+=dx)
        {
            try
            {
                double y=(Double) f.invoke(null,x);
                System.out.printf("%10.4f|%10.4f%n",x,y);
            }
            catch(Exception e)
            {
                e.printStackTrace();
            }
        }
    }
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -