YashasSamaga

Untitled

Feb 6th, 2017
189
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.26 KB | None | 0 0
  1. someTypeToStoreFunction func;
  2.  
  3. constructor()
  4. {
  5. if(argcount == 1)
  6. func = func_which_takes_1_arg;
  7. else if(argount == 2)
  8. func = func_which_takes_2_arg;
  9. else
  10. func = func_which_takes_3_arg;
  11. }
  12.  
  13. executeit2()
  14. {
  15. func(a,b);
  16. }
Add Comment
Please, Sign In to add comment