2

我有一个指向函数的指针,它可以指向带有一个、两个或多个参数的函数。

double (*calculate)(int);

double plus(int a, int b){ return a+b; }

double sin(int a){ return Math::Sin(a); }

我怎么可能使用

calculate = plus; 
calculate = sin;

在同一个程序中。不允许更改函数 plus 和 sin。用托管 C++ 编写;

我试过double (*calculate)(...);了,但这不起作用。

4

2 回答 2

0

你可以尝试使用这样的东西:

struct data
{
  typedef double (*one_type) ( int a );
  typedef double (*other_type) ( int a, int b );

  data& operator = ( const one_type& one ) 
  {
    d.one = one;
    t = ONE_PAR;
    return *this;
  }

  data& operator = ( const other_type& two ) 
  {
    d.two = two;
    t = TWO_PAR;
    return *this;
  }

  double operator() ( int a )
  {
    assert( t == ONE_PAR );
    return d.one( a );
  }

  double operator() ( int a, int b )
  {
    assert( t == TWO_PAR );
    return d.two( a, b );
  }

  union func
  {
    one_type one;
    other_type two;
  } d;


  enum type
  {
    ONE_PAR,
    TWO_PAR
  } t;
};
double va( int a ) 
{
  cout << "one\n";
}
double vb( int a, int b ) 
{
  cout << "two\n";
}

这工作正常:

data d;
d = va;
d( 1 );
d = vb;
d( 1, 2 );
于 2013-04-02T11:59:50.720 回答
0

plusto的赋值calculate是一种类型违规,并且在calculate稍后调用时会导致未定义的行为,因此任何(坏的)都可能发生。

您可能对libffi感兴趣(但我不知道它是否适用于托管 C++)。

于 2013-04-02T11:12:26.453 回答