Hello,
short question:
How do i write the following java code in B4A? (please notice that it has the same function name but with different parameters within one class)
B4A complains that it hase double function names - but in java that works.
Thanks for any help!
short question:
How do i write the following java code in B4A? (please notice that it has the same function name but with different parameters within one class)
B4X:
public class whatever
{
static int make( int r, int g, int b, int a )
{
... function code...
}
static int make( int r, int g, int b )
{
... function code again...
}
} // end of class
B4A complains that it hase double function names - but in java that works.
Thanks for any help!