edited by
421 views
1 votes
1 votes

A function object :

  1. is an instance of a class for which operator ( ) is a member function

  2. is an instance of a class for which operator → is a member function

  3. is a pointer to any function

  4. is a member function of a class

edited by

1 Answer

Answer:

Related questions

0 votes
0 votes
2 answers
1
2 votes
2 votes
1 answer
2
go_editor asked Mar 26, 2020
503 views
Consider the following statements,Int i=4, j=3, k=0; k=++i - j + i++ -j +j++;What will be the values of $i, j $ and $k$ after the statement.$7,2,8$$5,2,10$$6,2,8$$4,2,8$...
1 votes
1 votes
5 answers
3
2 votes
2 votes
2 answers
4
go_editor asked Mar 27, 2020
904 views
Which of the following is not collision resolution technique?Hash addressingChainingBoth (A) and (B)Indexing