what is a callback function?
Answers were Sorted based on User's Feedback
Answer / www.lutix.com
A function that is passed (by reference) to another
function. The other function calls the callback function
under defined conditions
Is This Answer Correct ? | 11 Yes | 1 No |
Answer / m.shanmuga sundaram
Definition:
***********
Functions that are triggered when an associated event
happens.
example
*******
a) In C language function pointer is used as a callback
functions.
b) In C++ virtual function are used as a callback function.
c) In c# delegate keyword is used to create a call back
function.
example in c#
*************
using System;
using System.Collections.Generic;
using System.Text;
namespace ConsoleApplication1
{
class Program
{
public delegate int execute(int a, int
b); //declare a delegate method
static void Main(string[] args)
{
Program p = new Program();
execute ex = new execute(p.add);
Console.WriteLine(ex(2,3)); //add method is
executed
ex = new execute(p.subtract);
Console.WriteLine(ex(2, 3)); //subtract method
is executed
}
public int add(int a, int b)
{
return (a + b);
}
public int subtract(int a, int b)
{
return (a - b);
}
}
}
Is This Answer Correct ? | 11 Yes | 1 No |
Answer / geetha
hi Amit,
Thank you for giving Definition. Can you give some example?.
Thanks,
Geetha
Is This Answer Correct ? | 2 Yes | 0 No |
Answer / amit bhardwaj
one object to send message to other object is called
callback and the Methos use to call back message are known
as callback method.
Is This Answer Correct ? | 3 Yes | 2 No |
Why do we need interfaces in c#?
Explain different properties of object oriented systems.
What is the difference between internal and protected in c#?
You have got 1 million parking slots. At a time a parking slot can be free or not. To get next slot easily which data structure to implement?
Which operator cannot be overloaded in c sharp?
how to change a value of particular cell in a data grid
Do extension methods have to be static?
Are multiple data types stored in System.Array?
What do you mean by thread safe in c#?
Why do we use Design Pattern?
What are the types of attributes in c#?
Why do we need abstract class?