Static Constructs
Learn about static constructs in BoxLang, including static constructors and static methods.
What is static?
Why use static?
Where can I apply it?
Static Constructor
class MyFunkyCalculator{
// Static Constructor
static {
CACHE_KEY = "luis",
multiplier = 4
}
}Static Methods
Accessing Static Constructs
Last updated
Was this helpful?
