Android:如何为参数变量设置默认值
Android函数
PHP示例:
function HaHa($a = "Test")
{
print $a;
}
问题是如何在android中做到这一点...
public void someFunction(int ttt = 5)
{
// something
}
上面的解决方案不起作用,我该怎么做?
谢谢!
Android function
PHP example:
function HaHa($a = "Test")
{
print $a;
}
The question is how to do it in android...
public void someFunction(int ttt = 5)
{
// something
}
The solution above doesn't work, how can I do it?
Thanks!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(7)
不,Java 不支持函数参数的默认值。这里有一篇关于借用语言功能的有趣文章: http://java.dzone.com /news/default-argument-values-java
No, Java does not support default values for function parameteres. There's an interesting post about borrowing language features here: http://java.dzone.com/news/default-argument-values-java
不需要重载任何东西,只需编写:
No need to overload anything, just write:
你可以像这样滥用重载:
You can abuse overloading like this:
您可以使用
3 点
语法:you can use
3 dots
syntax:您可以使用重载函数。
重载也可以,但如果您需要多个参数的默认值,您最终将创建许多具有所有可能的默认参数组合的方法,例如您使用的示例,假设您希望为 3 个参数设置默认值。你最终会得到这个
所以这是我为我做的黑客,你也可以使用
上面的代码将生成结果
我在这里找到示例 java-default-parameter-values
You can use overloading a function .
The overloading is also okay but in case you need default values for multiple arguments you will end up creating having many methods with all possible combination of default arguments, for the example you use imagine you want to have a default value for the 3 arguments. you will end up with this
So here's the hack i did for me , you can also use
The above code will genrate result
I find out here the example java-default-parameter-values
您现在可以使用 Kotlin 在 Android 中完成此操作!
Kotlin 支持默认参数,因此您可以编写一个像这样的函数:
然后你可以像这样调用它:
You can do it now in Android by using Kotlin!
Kotlin supports default arguments, so you can write a function like:
And then you can call it just like:
Java 不支持可以执行您想要的操作的语法。
也许在 someFunction(int) 的开头,您可以只检查传入的值,如果您不喜欢传入的值,则分配一个不同的值。
请注意,这个问题似乎与 android 无关,因此不正确标记。
Java doesn't support a syntax that will do what you want.
Perhaps at the start of someFunction(int), you could just check the incoming value, and assign a different value if you don't like what's coming in.
Please note this question appears to have nothing to do with android, and so is improperly tagged.