Android:如何为参数变量设置默认值
安卓功能
示例:
function HaHa($a = "Test")
{
print $a;
}
问题是如何在Android中做到这一点...
public void someFunction(int ttt = 5)
{
// something
}
上面的解决方案不起作用,我该怎么做?
谢谢!
安卓功能
示例:
function HaHa($a = "Test")
{
print $a;
}
问题是如何在Android中做到这一点...
public void someFunction(int ttt = 5)
{
// something
}
上面的解决方案不起作用,我该怎么做?
谢谢!
无需重载任何内容,只需编写:
public int getScore(int score, Integer... bonus)
{
if(bonus.length > 0)
{
return score + bonus[0];
}
else
{
return score;
}
}