

Arrays in java are objects. In this video we will see practical implementation of arrays in java. learn how to declare an array. [] – square brackets are used to declare array. We can declare the datatype of array as we want.
visit our website : www.telusko.com
facebook page :
google plus :
Subscribe to the channel and learn Programming in easy way.
Java Tutorial for Beginners:
C Tutorial Playlist :
Android Tutorial for Beginners Playlist :
XML Tutorial :
Design Patterns in Java :
Socket Programming in Java :
Spring MVC Tutorial :
OpenShift Tutorial for Beginners :
Spring Framework with Maven :
Sql Tutorial for Beginners :
String Handling in Java :
Array in Java :
Java Servlet :
Exception Handling in Java :
source
Thanks a lot sir for such a awsome java tutorials…
You can use BlueJ instead of netbeans it's faster
very helpful
How can we create array in java like c
In which we enter the input at the run time of program ? Plz reply or make video on this topic.
tqq…
Your video is so nice
Why
Int a [] = new int[10];
Why not int a [];
Simply ..
Why we creating new object..
Very thankful.. Simple and Easy to understand
Do you have to allocate space using the new operator for an array ? Because in netbeans I didnt do so I did it the traditional way in C by writing the following code
int a[ ] = {1, 2, 4, 5};
int x = a[0];
System.out.println(a[0]);
System.out.println(x);
and it worked, didn't give me any errors, is the only difference that my memory will be static for the array ? thank you .
is the array name used the same way as in C where it holds the address of the first element within the array ? almost like a pointer ? thanks
Thank you so much for the simple explanation !
Yours videos are really helpful and explanations are too good.. I hope its helping lot of students.. I will keep you in my prayers. May God bless you always with lots of happiness in life.
what is new integer?
hats up
When I print int array as SOP(a), I am getting the output as hashcode.. but
char a[]={'a','b','c'};
SOP(a);
The above code prints abc as output and not hashcode.. Why is that.. Can someone pls explain
when you print SOP(a) and it prints [I@15db97421..as you said this print hash code..actually this print classname@hexadecimal of hash hash code..so here "[I" is the class and "15db97421" is the hexa dec of hash code…
corrent me if i am wrong,,,