Re: some text.equals(someString)

2002-02-02 Thread Ross Burton
On Tue, 2002-01-29 at 07:52, E.L. Willighagen wrote: 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)) {}; Performance

Re: some text.equals(someString)

2002-01-30 Thread Jeppe Buk
E.L. Willighagen writes: 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)) {}; I would think they are pretty much equal with respect to memory

Re: some text.equals(someString)

2002-01-29 Thread Francois BOTTIN
--- E.L. Willighagen [EMAIL PROTECTED] wrote: 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)) {}; Hi I don't know

Re: some text.equals(someString)

2002-01-29 Thread Rick Lutowski
--- E.L. Willighagen [EMAIL PROTECTED] wrote: 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

some text.equals(someString)

2002-01-29 Thread E.L. Willighagen
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

Re: some text.equals(someString)

2002-01-29 Thread Francois BOTTIN
--- E.L. Willighagen [EMAIL PROTECTED] wrote: 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)) {}; Hi I don't know

Re: some text.equals(someString)

2002-01-29 Thread Arnaud Vandyck
Francois BOTTIN [EMAIL PROTECTED] wrote: --- E.L. Willighagen [EMAIL PROTECTED] wrote: 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

Re: some text.equals(someString)

2002-01-29 Thread Rick Lutowski
--- E.L. Willighagen [EMAIL PROTECTED] wrote: 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