Java

Moderators: zibadian
Number of threads: 7836
Number of posts: 18235

This Forum Only
Post New Thread
Single Post View       Linear View       Threaded View      f

Report
Does type-cast impose overhead at runtime ? Posted by ninchagora on 26 Jun 2005 at 8:56 AM
Does cast require additional operations at runtime, or is it just a trick for the compiler ?


For example:

Is this

MyClass obj = new MyClass(...);
obj.myField = ... ;
obj.myMethod(...);


faster than this:

Object obj = new MyClass(...);
((MyClass)obj).myField = ... ;
((MyClass)obj).myMethod(...);


?

Thanks for your consideration
Report
Re: Does type-cast impose overhead at runtime ? Posted by moo on 28 Jun 2005 at 4:44 AM
: Does cast require additional operations at runtime, or is it just a trick for the compiler ?
:
:
: For example:
:
: Is this
:
:
: MyClass obj = new MyClass(...);
: obj.myField = ... ;
: obj.myMethod(...);
: 

:
: faster than this:
:
:
: Object obj = new MyClass(...);
: ((MyClass)obj).myField = ... ;
: ((MyClass)obj).myMethod(...);
: 

:
: ?
:
: Thanks for your consideration
:

Hi,
there is definately an overhead for this cast, since java at least has to check whether the cast is all right (ClassCastException).

greetings mo



 

Recent Jobs

Official Programmer's Heaven Blogs
Web Hosting | Browser and Social Games | Gadgets

Popular resources on Programmersheaven.com
Assembly | Basic | C | C# | C++ | Delphi | Flash | Java | JavaScript | Pascal | Perl | PHP | Python | Ruby | Visual Basic
© Copyright 2011 Programmersheaven.com - All rights reserved.
Reproduction in whole or in part, in any form or medium without express written permission is prohibited.
Violators of this policy may be subject to legal action. Please read our Terms Of Use and Privacy Statement for more information.
Operated by CommunityHeaven, a BootstrapLabs company.