Topic: Never Change the Default Parameters of Virtual Methods (Read 718 times)
Robot
I am a fanatic. So?
Posts: 547
1192 credits Members referred : 0
« on: Feb 09, 2006, 09:31:17 AM »
It's not a good idea to change the default parameters of virtual methods because the default parameters are bound at compile time (static binding), whereas virtual methods themselves get bound only at run time (late binding).