标签: invocation

有没有办法在不调用TypeError的情况下使用错误数量的参数调用Python函数?

当您调用具有错误数量的参数的函数或使用不在其定义中的关键字参数时,您将获得TypeError.我想要一段代码来进行回调,并根据回调支持的内容,使用变量参数调用它.一种方法是,对于回调cb,使用cb.__code__.cb_argcountcb.__code__.co_varnames,但我宁愿将其抽象为类似的东西apply,但只应用"适合"的参数.

例如:

 def foo(x,y,z):
   pass

 cleanvoke(foo, 1)         # should call foo(1, None, None)
 cleanvoke(foo, y=2)       # should call foo(None, 2, None)
 cleanvoke(foo, 1,2,3,4,5) # should call foo(1, 2, 3)
                           # etc.
Run Code Online (Sandbox Code Playgroud)

在Python中是否有这样的东西,或者我应该从头开始编写什么?

python invocation apply

1
推荐指数
1
解决办法
282
查看次数

直接调用与C中的间接调用

我是C的新手,我正在阅读指针如何"指向"另一个变量的地址.所以我尝试了间接调用和直接调用,并收到了相同的结果(正如任何C/C++开发人员所预测的那样).这就是我做的:

int cost;
int *cost_ptr;

int main()
{
    cost_ptr = &cost;                          //assign pointer to cost
    cost = 100;                                //intialize cost with a value
    printf("\nDirect Access: %d", cost);
    cost = 0;                                  //reset the value
    *cost_ptr = 100;
    printf("\nIndirect Access: %d", *cost_ptr);
    //some code here

    return 0;                                  //1
}
Run Code Online (Sandbox Code Playgroud)

所以我想知道使用指针的间接调用是否比直接调用有任何优势,反之亦然?一些优点/缺点可能包括速度,执行操作所消耗的内存量(很可能相同,但我只想把它放在那里),安全性(如悬挂指针),良好的编程习惯等
.1有趣的是,我是使用GNU C编译器(gcc),它仍然编译没有return语句,一切都按预期.也许是因为如果你忘了,C++编译器会自动插入return语句.

c comparison pointers indirection invocation

1
推荐指数
1
解决办法
2795
查看次数

重新激活托盘中运行的应用的最佳方法是什么?

我有一个delphi应用程序,最小化运行托盘图标.双击托盘图标时,应用程序将打开一个非模态用户界面表单.

我已经为应用添加了逻辑,以检测它是否已经在运行.如果它没有运行,它会启动并将自身减少到托盘.

如果它已经在运行,我希望它将控制权传递给它自己的第一个实例并打开非模态表单,然后退出(第二个实例).最好的方法是什么?

TIA R

delphi mutex trayicon minimize invocation

1
推荐指数
1
解决办法
1207
查看次数

我的Method.invoke调用出了什么问题?

我刚刚创建了以下简约测试用例:

package testcase;

public class Main
{

    public static void main( String[] args )
        throws Throwable
    {
        if ( args.length == 0 )
            Main.class.getMethod( "main", String[].class ).invoke( null, new String[] { "test" } );
    }

}
Run Code Online (Sandbox Code Playgroud)

它应该只运行,没有输出,也没有例外.该main方法应该使用反射来调用自身.但是我得到以下异常:

Exception in thread "main" java.lang.IllegalArgumentException: argument type mismatch
    at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
    at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:62)
    at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:43)
    at java.lang.reflect.Method.invoke(Method.java:498)
    at testcase.Main.main(Main.java:10)
Run Code Online (Sandbox Code Playgroud)

我无法弄清楚,为什么......

java reflection exception invocation java-8

-1
推荐指数
1
解决办法
4086
查看次数

递归构造函数调用错误无法找到解决方案

我在四个公共金枪鱼部分得到递归构造溢出调用错误(部分=可能是一个类或其他东西?).它在教程上工作但不适合我,似乎无法看到哪里

public class tuna {
    private int hour;
    private int minute;
    private int second;

    public tuna() {
        this(0,0,0); //default  
    }
    public tuna(int h){
        this(h,0,0);    //with hours input
    }
    public tuna(int h, int m){
        this(h,m,0);    //with hours and minutes
    }
    public tuna(int h, int m, int s){
        this(h,m,s);    //with hours, minutes and seconds
    }
Run Code Online (Sandbox Code Playgroud)

java recursion constructor this invocation

-2
推荐指数
1
解决办法
6288
查看次数