| Allegro CL version 9.0 Unrevised from 8.2 to 9.0. 8.2 version |
Arguments: name (lisp-class &rest argtypes) &optional retmod
Like def-java-method, but to call a static method. The Lisp function defined has as many arguments as argtypes; there is no leading instance (dispatch) argument.
(def-java-class (strict-math "java.lang.StrictMath") () () () ()) (def-java-static (strict-abs "abs") (strict-math "int"))
This form defines an ordinary Lisp function strict-abs that
calls the static method abs in the Java class
java.lang.StrictMath
.
(strict-abs 17)
See jlinker.htm for more information on the jLinker facility.
Copyright (c) 1998-2019, Franz Inc. Oakland, CA., USA. All rights reserved.
This page was not revised from the 8.2 page.
Created 2012.5.30.
| Allegro CL version 9.0 Unrevised from 8.2 to 9.0. 8.2 version |