Which is faster Abstract class or interface and why
Which is faster Abstract class or interface and why
Hi,
Which is faster Abstract class or interface and why
Which is faster Abstract class or interface and why
Know the answer? Post it — somebody with the same question will find it here.
Sign in to answer this question
It is the same account you read, post and publish with — and you will come straight back to this page.
VulpesPosted Aug 28, 2014, 5:40 AM
Although an abstract class can't be instantiated it may contain executable code including static methods/properties and an instance constructor which is called by its base classes. It's execution speed will therefore depend on the speed of such executable code and whether and to what extent it's invoked within the application.
R JPosted Aug 27, 2014, 8:29 PM