Encyclopedia > Dispatch table

  Article Content

Dispatch table

In computer science, dispatch table is a list of pointers to actual implementation of each method. Use of this table is a common technique when implementing late binding[?] in object-oriented programming. Generally, OOP languages support the table as built-in feature to provide seemless late binding.

The implemenation is like in C:

struct method
{
  void (*func) ();
};

table[] = {
  func_a,
  func_b,
};



All Wikipedia text is available under the terms of the GNU Free Documentation License

 
  Search Encyclopedia

Search over one million articles, find something about almost anything!
 
 
  
  Featured Article
242

... 2nd century - 3rd century - 4th century Decades: 190s 200s 210s 220s 230s - 240s - 250s 260s 270s 280s 290s Years: 237 238 239 240 241 - 242 - 243 244 245 246 ...

 
 
 
This page was created in 41.6 ms