[XML-DEV Mailing List Archive Home] [By Thread] [By Date] [Recent Entries] [Reply To This Message]

Re: String interning

  • From: David Megginson <david@m...>
  • To: xml-dev@i...
  • Date: Fri, 14 Jan 2000 16:48:20 -0500 (EST)

hashtable hashmap comparison
Assaf Arkin writes:

 > For the life of me I cannot figure out what's wrong with
 > 
 >   if ( name.equals( "foo" ) )
 > 
 > or
 > 
 >   if ( name == "foo" || name.equals( "foo" ) )

The normal case is that the names are *not* the same (you probably
test against many possibilities to find a match), so you pay the
equals() cost most of the time.  For comparison, I just whipped up a
Java class to compare two (non-equal) Strings 10,000,000 times.  Here
are the USER timings:

No comparisons (startup overhead): 0.67 seconds
Compare with ==:                   0.94 seconds (=0.27 seconds)
Compare with equals():             8.00 seconds (=7.33 seconds)

That's a very significant performance difference.  It doesn't matter
if I use == before equals(), of course, since they are not == or
equals().  Now, I don't know if the difference is big enough to show
up in an overall application, but given the efficiency of ==, it would
probably be an order of magnitude faster to test against 30 or 40
names using == than it would to make a single Hashtable or HashMap
lookup.


All the best,


David

-- 
David Megginson                 david@m...
           http://www.megginson.com/

xml-dev: A list for W3C XML Developers. To post, mailto:xml-dev@i...
Archived as: http://www.lists.ic.ac.uk/hypermail/xml-dev/ or CD-ROM/ISBN 981-02-3594-1
Please note: New list subscriptions now closed in preparation for transfer to OASIS.



PURCHASE STYLUS STUDIO ONLINE TODAY!

Purchasing Stylus Studio from our online shop is Easy, Secure and Value Priced!

Buy Stylus Studio Now

Download The World's Best XML IDE!

Accelerate XML development with our award-winning XML IDE - Download a free trial today!

Don't miss another message! Subscribe to this list today.
Email
First Name
Last Name
Company
Subscribe in XML format
RSS 2.0
Atom 0.3
 

Stylus Studio has published XML-DEV in RSS and ATOM formats, enabling users to easily subcribe to the list from their preferred news reader application.


Stylus Studio Sponsored Links are added links designed to provide related and additional information to the visitors of this website. they were not included by the author in the initial post. To view the content without the Sponsor Links please click here.

Site Map | Privacy Policy | Terms of Use | Trademarks
Free Stylus Studio XML Training:
W3C Member
Stylus Studio® and DataDirect XQuery ™are products from DataDirect Technologies, is a registered trademark of Progress Software Corporation, in the U.S. and other countries. © 2004-2013 All Rights Reserved.