D - Abstract or not
- Julio César Carrascal Urquijo (13/13) Nov 13 2003 What's the difference between
- Matthew Wilson (4/17) Nov 14 2003 You can never create an instance of the abstract version. The second one
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>