Var-arg method (part-3): Equivalence between one dimensional arrays and var-arg parameters

preview_player
Показать описание
This is the updated video of Queue concept.
This is the classroom video at DURGASOFT.
Content : var-arg methods

DURGASOFT is INDIA's No.1 Software Training Center offers
online training on various technologies like JAVA, .NET ,
ANDROID,HADOOP,TESTING TOOLS , ADF, INFORMATICA, SAP...
courses from Hyderabad & Bangalore -India with Real Time Experts.
so that our Supporting Team will arrange Demo Sessions.
Ph:Call +91-8885252627,+91-7207212428,+91-7207212427,+91-8096969696.

You can find the Collection Framework videos in sequence at
Рекомендации по теме
Комментарии
Автор

Thank u so much sir for such a clear explanation.

direndrasubba
Автор

excellent teaching sir nd good expliminaions

Vijjisarath
Автор

Sir ..could you please give some examples for passing null as parameter. i.e
Hello h=new Hello()
h.sum(null);


class Hello{
void sum(int... a)
{
sopln("int");
}
void sum(String... a)
{sopln("string");
}
}

bhanupratap
Автор

May I understand in what situation we will use (int...a) instead of ( int[] a)?

CHIchangching