Abstract functions and variable arguments list

我怕爱的太早我们不能终老 提交于 2019-12-04 03:17:53

问题


I have an abstract class an I like to know if it's possible to define an abstract function with variable arguments list?

Give me an example if it's possible.


回答1:


Yes, it is possible in principle. An example follows below. You can see the output here.

Also read about variable arguments list here and here

#include <iostream>
#include <cstdarg>

using namespace std;


class AbstractClass{

public:

  virtual double average(int num, ... ) = 0;


};


class ConcreteClass : public AbstractClass{
public:

   virtual double average(int num, ... ) 
   {
      va_list arguments;                     // A place to store the list of arguments
      double sum = 0;

      va_start ( arguments, num );           // Initializing arguments to store all values after num
      for ( int x = 0; x < num; x++ )        // Loop until all numbers are added
        sum += va_arg ( arguments, double ); // Adds the next value in argument list to sum.
      va_end ( arguments );                  // Cleans up the list

      return sum / num;                      // Returns the average
  }



};



int main()
{
    AbstractClass* interface = new ConcreteClass();
    cout << interface->average( 3 , 20 ,30 , 40 );

    return 0;
}


来源:https://stackoverflow.com/questions/9376872/abstract-functions-and-variable-arguments-list

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!