in php you can declare a function in a global scope with function.
is this not possible in java? looks like every function is in a class as a method. so everything is OOP in java? no procedural code?
|
in php you can declare a function in a global scope with function. is this not possible in java? looks like every function is in a class as a method. so everything is OOP in java? no procedural code? |
|||||
|
|
The closest thing you can have to a "free-floating" function is a static function, which you can call as qualified with the class name, e.g.
... elsewhere
You can add a bit of syntactic sugar to this to make it look like what you're thinking of:
... elsewhere
|
|||||
|
|
Yep. But you can define static methods, which ultimately can act as methods contained within a class but be invoked without instantiating an instance of the class. That is, if you define a method |
|||
|
|
|
That's right, no procedural code, everything's an object defined by a class (except the few primitive data types). You can, however, use static methods:
The JVM-based language Scala does allow you to create higher-order functions, which you can pass around as values. |
|||||||
|
|
Oh yes, OO indeed. You can code pseudo procedural stuff within a static method though. |
|||
|
|
|
You can make a method static an call it without creating an Object
|
|||
|
|
|
Expanding on what everyone else is saying, if you have a lot of such functions, it is common to group them together in classes that are full of nothing but static methods, often called "utility classes." The first example that comes to mind is java.lang.Math but there are tons of others. Any class with "Util" in its name is likely to follow this pattern. |
|||
|
|
|
In java world, all functions must be declared within a class, no matter what. Welcome to OO world =) |
|||
|
|
|
Yes, you can make static functions, er, methods, but then you have to hard-code calls to them. To select a callback at runtime, you have to make an interface (not a function pointer, procedural type, or delegate), and then make a bogus class (though perhaps anonymous) to "implement" it. Enjoy the make-work! Or, enjoy the humorous satirazation: http://steve-yegge.blogspot.com/2006/03/execution-in-kingdom-of-nouns.html |
|||
|
|
|
Do not jive well well OOP. You can still have define a public static method and call it from anywhere as others have mentioned. |
|||
|
|