this post was submitted on 18 Oct 2023
1 points (100.0% liked)
Lisp
64 readers
3 users here now
founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
view the rest of the comments
To add more context to this response: Java has this notion of static methods that belong to classes, compared to the regular methods that belong/act on instances. So ABCL's
jmethodis to call a method using an instance, whilejstaticis to call a static method using a class.Math.sqrthappens to be a static method ofMathclass, so usejstatic. Once this static/regular distinction is cleared up, ABCL interface becomes quite usable.