Is function overloading possible in SystemVerilog?

Companies Related Questions, System Verilog 0 Comments

No it is possible , as it is not supported , you cannot have different input type of same function type,

like

Class myClass

{

int Func(int x) { }

int Func(string s) { }

int Func(int x,string s) { }

}

Leave a Reply