Overload routines in different languages
You can overload routines to handle different data types in either C or Java™. You cannot, however, overload a routine in a different language with the same data type.
For example, you can create the following two functions:
- MyFunction(lvarchar) written in C
- MyFunction(int) written in Java
However, you cannot create the following two functions:
- MyFunction(lvarchar) written in C
- MyFunction(lvarchar) written in Java