[android-developers] Significance of ... in doInBackground(Params...) of AsyncTask

2010-08-30 Thread nikki
Hi Group, I was just going through the document over AsyncTask and came across the notation ... in the methods of Asynctask (For eg. doInBackground(Params...)). I was a bit excited to know whats the significance of ... in this notation. Please help Regards Nihkilesh -- You received this

Re: [android-developers] Significance of ... in doInBackground(Params...) of AsyncTask

2010-08-30 Thread Romain Guy
It's a notation called varargs. See explanations here: http://download-llnw.oracle.com/javase/1.5.0/docs/guide/language/varargs.html On Sun, Aug 29, 2010 at 11:12 PM, nikki nikhileshsingh...@gmail.com wrote: Hi Group, I was just going through the document over AsyncTask and came across the

Re: [android-developers] Significance of ... in doInBackground(Params...) of AsyncTask

2010-08-30 Thread nikhilesh singh tak
Hey Romain Guy thanks a lot for quick response and help. :) Regards Nikhilesh Singh Tak On Mon, Aug 30, 2010 at 11:44 AM, Romain Guy romain...@android.com wrote: It's a notation called varargs. See explanations here: