RE: JESS: RE: Performance, Java static method vs Java oject method calls.

2011-10-24 Thread Nguyen, Son
Subject: JESS: RE: Performance, Java static method vs Java oject method calls. The time difference you're looking at is the time it takes the JVM to throw an exception. Jess interprets an expression like this (?string codePointAt 0) as (assuming ?string is the symbol 'a') (call a codePointAt 0

JESS: RE: Performance, Java static method vs Java oject method calls.

2011-10-21 Thread Friedman-Hill, Ernest
The time difference you're looking at is the time it takes the JVM to throw an exception. Jess interprets an expression like this (?string codePointAt 0) as (assuming ?string is the symbol 'a') (call a codePointAt 0) That's actually ambiguous. We might be calling a static method codePointAt