android 异步任务
在 Android 中定义 ASyncTask 及其关联方法时,会出现 3 个点,例如 protected Long doInBackground(URL... urls)
这些点是什么意思?
When defining an ASyncTask and it associated methods in Android there are 3 dots that appear, eg protected Long doInBackground(URL... urls)
What do the dots mean?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(3)
这不完全是一回事。考虑以下示例
示例 1:
示例 2:
它们几乎相同,对吗?错了,叫他们区别就大了。第一个示例允许添加未定义数量的字符串。
示例 1:
示例 2:
It's not entirely the same thing. Consider the following examples
Example 1:
Example 2:
They're allmost identical, right? Wrong, calling them is the big difference. The first example allows for an undefined number of strings to be added.
Example 1:
Example 2:
这不是 AsynTask 特定的或 Android 特定的。将可变长度的参数传递给方法是 Java 的一项功能。
看看:
如何创建接受可变数量参数的 Java 方法?
This is not AsynTask specific or Android specific for that matter. It's a Java feature to pass variable length of parameters to a method.
Have a look at:
How to create Java method that accepts variable number of arguments?
它是java的概念。它看起来像数组。 (并且您对它的处理主要就像在数组上处理一样)。但是,在某些方面有所不同。
在 Android 中,您经常会遇到这种情况,例如,当您使用
视图动画
或属性动画
进行布局时。It java concept. It looks like array. (and you process it mostly like you process on array). But, it 's different in some points.
You will meet this commonly in android, for example when you use
view animation
orproperty animation
for layout.