Pemrograman Dasar Arrays PTIIK - UB. Arrays An array is a container object that holds a fixed...

17
Pemrograman Dasar Arrays PTIIK - UB

Transcript of Pemrograman Dasar Arrays PTIIK - UB. Arrays An array is a container object that holds a fixed...

Page 1: Pemrograman Dasar Arrays PTIIK - UB. Arrays  An array is a container object that holds a fixed number of values of a single type.  The length of an.

Pemrograman Dasar

Arrays

PTIIK - UB

Page 2: Pemrograman Dasar Arrays PTIIK - UB. Arrays  An array is a container object that holds a fixed number of values of a single type.  The length of an.

Arrays

An array is a container object that holds a fixed number of values of a single type.

The length of an array is established when the array is created. After creation, its length is fixed.

An array of ten elements

Each item in an array is called an element, and each element is accessed by its numerical index.

Page 3: Pemrograman Dasar Arrays PTIIK - UB. Arrays  An array is a container object that holds a fixed number of values of a single type.  The length of an.

// declares an array of integers

int[] anArray; An array declaration has two components: the array's type and the

array's name. An array's type is written as type[], where type is the data type of

the contained elements; the square brackets are special symbols indicating that this variable holds an array.

The size of the array is not part of its type (which is why the brackets are empty).

An array's name can be anything you want, provided that it follows the rules and conventions in the naming rules.

As with variables of other types, the declaration does not actually create an array — it simply tells the compiler that this variable will hold an array of the specified type.

Declaring a Variable to Refer to an Array

Page 4: Pemrograman Dasar Arrays PTIIK - UB. Arrays  An array is a container object that holds a fixed number of values of a single type.  The length of an.

Similarly, you can declare arrays of other types:byte[] anArrayOfBytes;

short[] anArrayOfShorts;

long[] anArrayOfLongs;

float[] anArrayOfFloats;

double[] anArrayOfDoubles;

boolean[] anArrayOfBooleans;

char[] anArrayOfChars;

String[] anArrayOfStrings;

You can also place the square brackets after the array's name:// this form is discouraged

float anArrayOfFloats[];

Declaring a Variable to Refer to an Array

Page 5: Pemrograman Dasar Arrays PTIIK - UB. Arrays  An array is a container object that holds a fixed number of values of a single type.  The length of an.

Creating, Initializing, and Accessing an Array

One way to create an array is with the new operator. // create an array of integers

anArray = new int[10]; If this statement were missing, the compiler would print an

error like the following, and compilation would fail:ArrayDemo.java:4: Variable anArray may not have been initialized.

Page 6: Pemrograman Dasar Arrays PTIIK - UB. Arrays  An array is a container object that holds a fixed number of values of a single type.  The length of an.

Creating, Initializing, and Accessing an Array

The next few lines assign values to each element of the array:anArray[0] = 100; // initialize first element

anArray[1] = 200; // initialize second element

anArray[2] = 300; // etc. Each array element is accessed by its numerical index:

System.out.println("Element 1 at index 0: " + anArray[0]);

System.out.println("Element 2 at index 1: " + anArray[1]);

System.out.println("Element 3 at index 2: " + anArray[2]);

Page 7: Pemrograman Dasar Arrays PTIIK - UB. Arrays  An array is a container object that holds a fixed number of values of a single type.  The length of an.

Creating, Initializing, and Accessing an Array

Alternatively, you can use the shortcut syntax to create and initialize an array:int[] anArray = { 100, 200, 300, 400, 500, 600, 700, 800, 900, 1000 };

Here the length of the array is determined by the number of values provided between { and }.

Page 8: Pemrograman Dasar Arrays PTIIK - UB. Arrays  An array is a container object that holds a fixed number of values of a single type.  The length of an.

Creating, Initializing, and Accessing an Array

Finally, you can use the built-in length property to determine the size of any array. The codeSystem.out.println(anArray.length);

will print the array's size to standard output.

Page 9: Pemrograman Dasar Arrays PTIIK - UB. Arrays  An array is a container object that holds a fixed number of values of a single type.  The length of an.

Copying Arrays

The System class has an arraycopy method that you can use to efficiently copy data from one array into another:public static void arraycopy(Object src, int srcPos, Object dest, int destPos, int length)

The two Object arguments specify the array to copy from and the array to copy to.

The three int arguments specify the starting position in the source array, the starting position in the destination array, and the number of array elements to copy.

Page 10: Pemrograman Dasar Arrays PTIIK - UB. Arrays  An array is a container object that holds a fixed number of values of a single type.  The length of an.

Copying Arrays

class ArrayCopyDemo {

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];

System.arraycopy(copyFrom, 2, copyTo, 0, 7);

System.out.println(new String(copyTo));

}

}

Page 11: Pemrograman Dasar Arrays PTIIK - UB. Arrays  An array is a container object that holds a fixed number of values of a single type.  The length of an.

Examples Using Arrays

Using arrays to analyze survey results 40 students rate the quality of food

1-10 Rating scale: 1 mean awful, 10 means excellent Place 40 responses in array of integers Summarize results

Page 12: Pemrograman Dasar Arrays PTIIK - UB. Arrays  An array is a container object that holds a fixed number of values of a single type.  The length of an.
Page 13: Pemrograman Dasar Arrays PTIIK - UB. Arrays  An array is a container object that holds a fixed number of values of a single type.  The length of an.

Examples Using Arrays (Cont.)

Some additional points When looping through an array

Index should never go below 0 Index should be less than total number of array elements

When invalid array reference occurs Java generates ArrayIndexOutOfBoundsException

– Chapter 15 discusses exception handling

Page 14: Pemrograman Dasar Arrays PTIIK - UB. Arrays  An array is a container object that holds a fixed number of values of a single type.  The length of an.

Multidimensional Arrays

Multidimensional arrays In Java: arrays of arrays Tables with rows and columns

Two-dimensional array Declaring two-dimensional array b[2][2]int b[][] = { { 1, 2 }, { 3, 4 } };– 1 and 2 initialize b[0][0] and b[0][1]– 3 and 4 initialize b[1][0] and b[1][1]

int b[][] = { { 1, 2 }, { 3, 4, 5 } };– row 0 contains elements 1 and 2– row 1 contains elements 3, 4 and 5

Page 15: Pemrograman Dasar Arrays PTIIK - UB. Arrays  An array is a container object that holds a fixed number of values of a single type.  The length of an.

Multidimensional Arrays (Cont.)

Creating multidimensional arrays Can be allocated dynamically Demonstrating array of arrays

3-by-4 array int b[][]; b = new int[ 3 ][ 4 ];

Rows can have different number of columns int b[][]; b = new int[ 2 ][ ]; // allocate rows b[ 0 ] = new int[ 5 ]; // allocate row 0 b[ 1 ] = new int[ 3 ]; // allocate row 1

Page 16: Pemrograman Dasar Arrays PTIIK - UB. Arrays  An array is a container object that holds a fixed number of values of a single type.  The length of an.

Two-dimensional array with three rows and four columns.

a[ 1 ][ 0 ] a[ 1 ][ 1 ] a[ 1 ][ 2 ] a[ 1 ][ 3 ]

Row 0

Row 1

Row 2

Column 0 Column 1 Column 2 Column 3

Row index

Array name

Column index

a[ 0 ][ 0 ] a[ 0 ][ 1 ] a[ 0 ][ 2 ] a[ 0 ][ 3 ]

a[ 2 ][ 0 ] a[ 2 ][ 1 ] a[ 2 ][ 2 ] a[ 2 ][ 3 ]

Page 17: Pemrograman Dasar Arrays PTIIK - UB. Arrays  An array is a container object that holds a fixed number of values of a single type.  The length of an.

Program :int two_dim[][] = {{1, 2, 3, 4, 5},

{10, 20, 30, 40, 50}, {100, 200, 300, 400, 500}};

int i, j;for (i=0; i<3; i++){ for (j=0; j<5; j++)

System.out.print(two_dim[i][j]+" "); System.out.println();}

Example

1 2 3 4 5

10 20 30 40 50

100 200 300 400 500