D - Abstract or not
What's the difference between
class SomeObject
{
abstract void someMethod();
}
and
class SomeObject
{
void someMethod();
}
Thanks
--
Julio César Carrascal Urquijo
Nov 13 2003
You can never create an instance of the abstract version. The second one just won't link "Julio César Carrascal Urquijo" <adnoctum phreaker.net> wrote in message news:bp1adc$2g4f$2 digitaldaemon.com...What's the difference between class SomeObject { abstract void someMethod(); } and class SomeObject { void someMethod(); } Thanks -- Julio César Carrascal Urquijo
Nov 14 2003








"Matthew Wilson" <matthew-hat -stlsoft-dot.-org>