Selenium With Java14-Array
Selenium With Java14-Array
string name[100];
Array in java is index based, first element of the array is stored at 0 index.
o Size Limit: We can store only fixed size of elements in the array. It
doesn't grow its size at runtime. To solve this problem, collection
framework is used in java.
There are two types of array.
Syntax
dataType[ ] arr;
(or)
dataType arr[ ];
The size of the array and variables of array are already known, array literals can be
used.
int[ ] intArray = new int[ ]{ 1,2,3,4,5,6,7,8,9,10 };
// Declaring array literal
Example
class Testarray
{
public static void main(String args[ ])
{
//int a[5];
//String name ={s,e}
//name[0] = s;
//name[1]=e;
//int a = {1,2,3,4,5};
int a={10,20,30,40,50}
a[0]=1;
a[1]=2;
a[2]=3;
a[3]=4;
a[4]=5;
a[0]=10;//initialization
a[1]=20;
a[2]=70;
a[3]=40;
a[4]=50;
i=0
1<a[1]
We can declare, instantiate and initialize the java array together by:
class Testarray1
{
public static void main(String args[ ])
{
}
}
class Testarray2
{
I
static void min(int xyz[ ])
{
int min=xyz[0];
for(int i=1;i<xyz.length;i++)
if(min>xyz[i])
min=arr[i];
System.out.println(min);
}
int a[ ]={33,3,4,5};
min(a);//passing array to method
}
}
C:/javac xyz.java
Example
An array variable, myList, creates an array of 10 elements of double type and
assigns its reference to myList
foreach loop or enhanced for loop, which enables you to traverse the complete
array sequentially without using an index variable.
data is stored in row and column based index (also known as matrix form).
Syntax
dataType [ ]arrayRefVar[ ];
1. arrN[0][0]=1;
2. arr[0][1]=2;
3. arr[0][2]=3;
4. arr[1][0]=4;
5. arr[1][1]=5;
6. arr[1][2]=6;
7. arr[2][0]=7;
8. arr[2][1]=8;
9. arr[2][2]=9;
Example
class Testarray3
{
public static void main(String args[ ])
{
//printing 2D array
for(int i=0;i<3;i++)
{
for(int j=0;j<3;j++)
{
System.out.print(arr[i][j]+" ");
}
System.out.println();
}
}
}
Example
class multiDimensional
{
public static void main(String args[ ])
{
// declaring and initializing 2D array
int arr[ ][ ] = { {2,7,9},{3,6,1},{7,4,2} };
// printing 2D array
for (int i=0; i< 3 ; i++)
{
for (int j=0; j < 3 ; j++)
System.out.print(arr[i][j] + " ");
System.out.println();
}
}
}
class Testarray4
{
public static void main(String args[ ])
{
Class classname=arr.getClass( );
String name=c.getName();
System.out.println(name);
}
}
Example
class TestArrayCopyDemo
{
public static void main(String[ ] args)
{
char[ ] copyFrom = { 'd', 'e', 'c', 'a', 'f', 'f', 'e', 'i', 'n', 'a', 't', 'e', 'd' };
char[ ] copyTo = new char[7];
class Testarray5
{
public static void main(String args[ ])
{
//creating two matrices
int a[ ][ ]={
{1,3,4},{3,4,5}
};
int b[ ][ ]={
{1,3,4},{3,4,5}
};
1,2,3
4,5,6
7,8,9
2,3,4
4,5,6
6,7,8
Please Input numbers for Matrix A
{1,2,3},{4,5,6},{7,8,9}
Please Input numbers for Matrix B
{2,3,4},{4,5,6},{7,8,9}