Hi
Java and cpp support one function name multi function prototype.
For example:
A:
int func1(String s){}
int func1(int i){}
B:
int func1(String s){}
int func1(String s, int i){}
Does python support it?
Thanx
Java and cpp support one function name multi function prototype.
For example:
A:
int func1(String s){}
int func1(int i){}
B:
int func1(String s){}
int func1(String s, int i){}
Does python support it?
Thanx
Comment