-
Notifications
You must be signed in to change notification settings - Fork 184
Strict Java
Stian Soiland-Reyes edited this page Feb 18, 2016
·
2 revisions
Note: Strict Java Mode is new and currently breaks some BeanShell tools
and APIs when activated. The GUI desktop and most BeanShell commands
will not work with strict Java mode enabled.
Please see notes at the end of this page
If you are a Java teacher or a student learning the Java language and
you would like to avoid any potential confusion relating to BeanShell's
use of loose variable types, you can turn on Strict Java Mode. Strict
Java Mode is enabled with the the setStrictJava() command.
When strict Java mode is enabled BeanShell will require typed variable declarations, method arguments and return types.
For example:
setStrictJava(true);
int a = 5;
foo=42; // Error! Undeclared variable 'foo'.
bar() { .. } // Error! No declared return type.