View Single Post
  #6  
Old 02-25-2004, 12:14 PM
Merth
Dragon
 
Join Date: May 2003
Location: Seattle, WA
Posts: 609
Default

What you are doing is called overloading, where the compiler determines the correct function while it is compiling.

I'd be careful about using the term "Polymorphism" here because there is something in C++ that is traditionally given that term, but behaves very differently from overloading. In that, the actual function that is executed is not determined until runtime.
Reply With Quote