本帖最后由 VisualEleven 于 2014-01-10 19:14:44 编辑

解决方案 »

  1.   

    一个参数个数可变的函数
    你非常熟悉的printf就是类同的函数,其参数个数由调用者指定
      

  2.   

    还有这个va_start(args, methodID);和va_end(args);呢?
      

  3.   

    The va_arg, va_end, and va_start macros provide a portable way to access the arguments to a function when the function takes a variable number of arguments.
    用来解析得到参数的相关信息。
      

  4.   

    你的这个函数只是传递参数给functions->NewObjectV(this,clazz,methodID,args)
    谁知道这个函数做了什么?