Data Structure
Networking
RDBMS
Operating System
Java
MS Excel
iOS
HTML
CSS
Android
Python
C Programming
C++
C#
MongoDB
MySQL
Javascript
PHP
- Selected Reading
- UPSC IAS Exams Notes
- Developer's Best Practices
- Questions and Answers
- Effective Resume Writing
- HR Interview Questions
- Computer Glossary
- Who is Who
What are vararg methods in Java?
In Java methods, parameters accept arguments with three dots. These are known as variable arguments.
sample(int args …){}
If they are used you can pass a different number of arguments each time you call these methods.
Example
public class Sample {
void demoMethod(String... args) {
for (String arg: args) {
System.out.println(arg);
}
}
public static void main(String args[] ) {
new Sample().demoMethod("ram", "rahim", "robert");
new Sample().demoMethod("krishna", "kasyap")
}
}
Output
ram rahim robert krishna kasyap
Advertisements