Hi all,

can anyone tell me the difference (performance etc) between:

1. String someString = "text"
   if ("some text".equals(someString)) {};

and

2. String someString = "text"
   if (someString.equals("some text")) {};

regards,

Egon


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to