Coder Social home page Coder Social logo

Comments (2)

qianzhiheilv avatar qianzhiheilv commented on May 3, 2024

我知道原因了。。。addFunctionOfServiceMethod必须放在addMacro前面。。要么调用不到。。我原来写反过来的。。

from qlexpress.

zhihuchenl avatar zhihuchenl commented on May 3, 2024

String sum = "function sum(int a,int b){\n" +
" return a+b;\n" +
"};\n";

    runner.addMacro("bbb", sum);
    runner.addFunctionOfServiceMethod("add", new BindObjectMethod(), "add",
            new Class[] { Integer.class, Integer.class }, null);

    DefaultContext<String, Object> context = new DefaultContext<String, Object>();

    String express = "add(1,2);bbb;sum(1,22)";
    Object r = runner.execute(express, context, null, true, false);
    System.out.println(r);

通过这种方式利用addMacro替换成函数,执行时报错说sum(1,22) sum函数找不到,请问是什么问题?谢谢

from qlexpress.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.