Qore Programming Language Reference Manual 1.14.2
Loading...
Searching...
No Matches
Functions

Function Declarations

A function is declared in Qore by using the keyword sub (for subroutine) as follows.

Function Declaration Syntax
[public] [synchronized] [deprecated] [return_type] sub function_name([param_type] $var_name ...]) {
    statement(s)...
}

or the deprecated alternate syntax with the returns keyword:
[public] [synchronized] [deprecated] sub function_name([param_type] $var_name ...]) returns return_type {
    statement(s)...
}
Function names must be valid Qore identifiers.

When defining a user module, the function definition can be preceded by public, which means that the function variant will be available (imported) in the Program object importing the module. See public for more information.

Function Parameters

Variables listed in parentheses after the function name are the parameters to the function and automatically get local lexical scoping.

Type declarations optionally precede the parameter variable and will restrict any arguments passed to the type declared. The same function can be declared multiple times if each declaration has different parameter types; this is called overloading the function.

Variables passed as function arguments are passed by value by default, unless the caller places a "\" character before an lvalue in the argument list in the function call. In this case the function must have a parameter defined to accept the variable passed by reference. Any changes to the local variable will be reflected in the original variable for variables passed by reference. Also note that it is illegal to pass a local variable by reference in a @ref background "background" expression. @note In order to process a variable number of arguments to a function, use @ref implicit_arguments "implicit argument references" (<tt>$1</tt>) or the <tt>argv</tt> variable (an automatic local variable); these are automatically instantiated at run time when additional arguments in excess of the declared parameters are passed to the function at run time. No declaration needs to be made in the function signature to use the <tt>argv</tt> variable. @subsection function_return_types Function Return Type Declarations The return type of the function can be given by placing a type declaration before the <tt><b>sub</b></tt> keyword (the older syntax with the <tt><b>returns</b></tt> keyword after the parameter list is still accepted as well). @note Parameter and return types are required when the @ref Qore::PO_REQUIRE_TYPES or @ref Qore::PO_REQUIRE_PROTOTYPES parse options are set. @note If the return type is missing, it is assumed to be of type @ref any_type "any". In case @ref Qore::PO_REQUIRE_TYPES or @ref Qore::PO_REQUIRE_PROTOTYPES parse options are set, and the return type is missing from function's declaration, it is assumed to be of type @ref nothing. Functions use the @ref return "return statement" to provide a return value to the caller. @subsection function_examples Simple Example Functions Here is an example function declaration returning a value: @code{.py} #!/usr/bin/qore # function declaration example %new-style int sub print_string(string string) { print("s
", string); return 1; }@endcode Functions may also be recursive. Here is an example of a recursive %Qore function implementing the Fibonacci function: @code{.py} #!/usr/bin/qore # # recursive function example %new-style int sub fibonacci(int num) { if (num == 1) return 1; return num * fibonacci(num - 1); }@endcode @note Function names are resolved during the second parse pass; therefore functions do not need to be declared before being referenced. This allows an easy definition of 2 or more self-referencing functions. @subsection synchronized_functions "Synchronized" Functions Functions declared with the <tt><b>synchronized</b></tt> keyword will only run in one thread at a time. If another thread tries to call the function while the function is already being executed, any callers will block until the function has finished executing. Note that the lock used is recursive, so that a single thread may call the function multiple times safely without fear of a deadlock. The lock used also participates in %Qore's deadlock detection framework, therefore if a deadlock is detected, a \c THREAD-DEADLOCK exception is thrown. @see @ref synchronized @subsection deprecated-functions "Deprecated" Functions Functions declared with the @ref deprecated keyword will cause a @ref deprecated-warning "deprecated warning" to be raised when the function is referenced (but not when it's declared).

In this way API functions (or methods) can be declared as Deprecated List before eventual removal from the API set.