C#代码的Java替代品

Java alternative for C# code

本问题已经有最佳答案,请猛点这里访问。

我有一个函数,在C中有以下声明。它允许我调用函数,而不提供expectedDisplayValue变量的值。函数自动将变量初始化为""。我想在Java中使用类似的声明。我该怎么做?

1
public bool VerifyControlState(string identifier,string controltype, ButtonProperty buttonProperty, string expectedDisplayValue ="");


Java的结构通过函数重载来处理这个问题。基本上,创建一个没有expectedDisplayValue作为参数的函数,该函数将调用VerifyControlState (identifier, controltype, buttonProperty,"");
BR/>请参阅Java支持默认参数值吗?有关详细信息,请回答问题。