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
how to initialize a dynamic array in java?
Following program shows how to initialize an array declared earlier.
Example
public class Tester {
int a[];
public static void main(String[] args) {
Tester tester = new Tester();
tester.initialize();
}
private void initialize() {
a = new int[3];
a[0] = 0;
a[1] = 1;
a[2] = 2;
for(int i=0; i< a.length ; i++) {
System.out.print(a[i] +" ");
}
}
}
Output
0 1 2
Advertisements